11 lines
180 B
Java
Vendored
11 lines
180 B
Java
Vendored
public class AAA {
|
|
private int x = 42;
|
|
private AAA other = new AAA();
|
|
|
|
public int getX() {
|
|
return other.x;
|
|
}
|
|
|
|
public boolean issue() { return true; }
|
|
}
|