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

16 lines
285 B
Java
Vendored

public class C {
private String x = "";
C other = null;
public String getX() {
return x;
}
void setX(String x) {
System.out.println("setter invoked");
if (other != null) {
this.other.x = x;
}
this.x = x;
}
}