Files
kotlin-fork/j2k/tests/testData/ast/dropAccessors/FalseGetter.java
T
2014-10-14 21:23:24 +04:00

9 lines
135 B
Java

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