mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
Fix for KT-4250: IllegalAccessError when using protected java member from lambda function
#KT-4250 Fixed
This commit is contained in:
7
compiler/testData/codegen/boxWithJava/statics/protectedStatic/First.java
vendored
Normal file
7
compiler/testData/codegen/boxWithJava/statics/protectedStatic/First.java
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
public abstract class First {
|
||||
protected static String TEST = "OK";
|
||||
|
||||
protected static String test() {
|
||||
return TEST;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user