Support @JvmField on interface properties
#KT-15807 Fixed
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// !LANGUAGE: +JvmFieldInInterface +NestedClassesInAnnotations
|
||||
// TARGET_BACKEND: JVM
|
||||
|
||||
// WITH_RUNTIME
|
||||
// FILE: Test.java
|
||||
|
||||
public class Test {
|
||||
public static String publicField() {
|
||||
return Foo.z.getS();
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: simple.kt
|
||||
|
||||
|
||||
public class Bar(public val s: String)
|
||||
|
||||
annotation class Foo {
|
||||
|
||||
companion object {
|
||||
@JvmField
|
||||
val z = Bar("OK")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
fun box(): String {
|
||||
return Test.publicField()
|
||||
}
|
||||
Reference in New Issue
Block a user