blob: 0cb4d411fe32cbfa831b5f07c244d972541bc88a [file] [log] [blame]
package test0403;
class Test {
public void foo(){};
}
public class A {
void test1() throws CloneNotSupportedException {
Test test = new Test();
test.clone();
}
}