mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
Fixed codegen crash on use of protected synthetic extension property
This commit is contained in:
6
compiler/testData/codegen/boxAgainstJava/syntheticExtensions/_protectedSetter.java
vendored
Normal file
6
compiler/testData/codegen/boxAgainstJava/syntheticExtensions/_protectedSetter.java
vendored
Normal file
@@ -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