mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
publicField -> JvmField
Effectively drop publicField and introduce JvmField (which has the same effect for now) Implement frontend checks for @JvmField Replace publicField -> JvmField in test data
This commit is contained in:
committed by
Michael Bogdanov
parent
bfaf806f47
commit
6cf9bfdb70
6
compiler/testData/codegen/boxWithJava/jvmField/simple/Test.java
vendored
Normal file
6
compiler/testData/codegen/boxWithJava/jvmField/simple/Test.java
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
public class Test {
|
||||
public static String invokeMethodWithPublicField() {
|
||||
C c = new C();
|
||||
return c.foo;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user