Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/FalseGetter.java
T
2015-09-29 18:32:25 +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; }
}