Fixed codegen crash on use of protected synthetic extension property
This commit is contained in:
+6
@@ -0,0 +1,6 @@
|
||||
public class _protectedSetter {
|
||||
private String x = null;
|
||||
|
||||
public String getX() { return "OK"; }
|
||||
protected void setX(String x) { this.x = x; }
|
||||
}
|
||||
Reference in New Issue
Block a user