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

8 lines
105 B
Java
Vendored

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