Rename: Fixed rename of Java getters/setters through synthetic property references in Kotlin
#KT-8817 Fixed
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
public class Bean {
|
||||
private String prop = "value";
|
||||
public String getProp2() { return prop; }
|
||||
public void setProp2(String prop) { this.prop = prop; }
|
||||
|
||||
void test() {
|
||||
getProp2();
|
||||
setProp2("");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user