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

12 lines
141 B
Java
Vendored

public class AAA {
private int x = 42;
public int getX() {
return x;
}
public void foo() {
x = 10;
}
}