Remove FIELD target from jvmStatic and platformStatic annotations
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package aaa
|
||||
|
||||
import kotlin.jvm.*
|
||||
|
||||
public object TestObject {
|
||||
|
||||
@jvmStatic
|
||||
public val test: String = "test"
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
fun main(args: Array<String>) {
|
||||
val h = aaa.TestObject.test
|
||||
if (h != "test") {
|
||||
throw Exception()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user