Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/FalseGetter.java
T
2019-04-03 11:24:19 +03:00

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; }
}