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