blob: 54721a8d6b2eb92909b6f651320c041d97b20a50 [file] [log] [blame]
public class AAA {
private int x = 42;
private AAA other = new AAA();
public int getX() {
return other.x;
}
public boolean issue() { return true; }
}