Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/DataClassWithMutableField.java
T
2015-09-25 13:02:46 +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++;
}
}