blob: fc3209c3635872e9c17df54166e18530cd70a4e9 [file] [log] [blame]
public class MyClass {
public static void main(String[] args) {
new Parent(method()) {
};
}
public static String method() {
return "";
}
public static class Parent {
protected Parent(Object o) {
System.out.println(o);
}
}
}