Files
kotlin-fork/nj2k/testData/newJ2k/detectProperties/DataClassWithMutableField.java
T
2019-04-03 11:24:19 +03:00

16 lines
217 B
Java
Vendored

public class Test {
private int myCount;
public Test(int count) {
myCount = count;
}
public int getCount() {
return myCount;
}
public void inc() {
myCount++;
}
}