Files
openide/plugins/kotlin/j2k/shared/tests/testData/newJ2k/detectProperties/SetterWithSideEffect5.java
Alexey Belkov 0aba5a4e72 [kotlin] J2K: unignore K2 tests with K2-specific testdata
KTIJ-30693
KTIJ-30760

GitOrigin-RevId: 80dacdc6dcd7667d5b19771eb3ff192c577bd7d9
2024-08-09 19:19:40 +00:00

12 lines
203 B
Java

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