a84b32af98
#KT-5492 Fixed
16 lines
217 B
Java
16 lines
217 B
Java
public class Test {
|
|
private int myCount;
|
|
|
|
public Test(int count) {
|
|
myCount = count;
|
|
}
|
|
|
|
public int getCount() {
|
|
return myCount;
|
|
}
|
|
|
|
public void inc() {
|
|
myCount++;
|
|
}
|
|
}
|