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