blob: 3b68f2b9d5611ee7dc7857c1a19b4dac937c4638 [file] [log] [blame]
public class AAA {
private int x = 42;
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
}