mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Fix for KT-9939: java.lang.VerifyError: Bad type on operand stack for Boolean convenience accessor
#KT-9939 Fixed
This commit is contained in:
12
compiler/testData/codegen/boxWithJava/javaProperty/boxedSetter/JavaClass.java
vendored
Normal file
12
compiler/testData/codegen/boxWithJava/javaProperty/boxedSetter/JavaClass.java
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
public class JavaClass {
|
||||
|
||||
private boolean value;
|
||||
|
||||
public boolean isValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(Boolean value) {
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user