Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/setReservedWord2.1.java
T

11 lines
189 B
Java
Vendored

public class Foo {
private String typeof;
public String getTypeof() {
return typeof;
}
public void setTypeof(String typeof) {
this.typeof = typeof;
}
}