blob: 7805aac1acc6040f0aa731a07ac88c9e51b5e062 [file] [log] [blame]
public class C {
private String x = "";
public String getX() {
return x;
}
public void setX(String x) {
System.out.println("setter invoked");
this.x = x;
}
void foo() {
x = "a";
}
}