blob: 3187141e5fd371152e89e70946cd373b88f4e0bc [file] [log] [blame]
class A {
private Object b = new Object() {
private int myInt = 100;
public int getInt() {
return myInt;
}
};
}