blob: 23a53de82e87edda3ae0fa1320a513d8c23ab739 [file] [log] [blame]
public class Foo {
static Foo
f1 = new Foo(){
public String toString() {
return newMethod();
}
};
private static String newMethod() {
return "a" + "b";
}
static Foo f2 = new Foo(){};
}