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