Files
kotlin-fork/j2k/testData/fileOrElement/detectProperties/AssignFieldInsideSetter2.java
T
2016-04-29 18:13:51 +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;
}
}