Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/FalseGetter.java
T
2015-09-25 13:02:46 +03:00

9 lines
135 B
Java
Vendored

public class AAA {
private int x = 42;
private AAA other = new AAA();
public int getX() {
return other.x;
}
}