Files
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

11 lines
169 B
Plaintext

class A {
private Object b = new Object() {
private int i=0;
public String toString() {
i++;
return "A";
}
};
}