blob: c020ca26e17770c0d146e0c791cbd3c6afc3d3a8 [file] [log] [blame]
class A {
private Object b = new Inner();
private class <caret>Inner {
public Inner() {
// this does some stuff
doStuff();
/* isn't this interesting? */
}
public String doStuff() {
return "A";
}
}
}