Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/DropGetterForMutable.java
T
2019-04-03 11:24:19 +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;
}
}