Files
openide/java/java-tests/testData/refactoring/inlineToAnonymousClass/ConstructorToInstanceInitializer.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

14 lines
255 B
Plaintext

class A {
private Object b = new Object() {
{
// this does some stuff
doStuff();
/* isn't this interesting? */
}
public String doStuff() {
return "A";
}
};
}