Files
kotlin-fork/compiler/testData/versionRequirement/jvmFieldInInterfaceCompanion.kt
T

10 lines
159 B
Kotlin
Vendored

package test
interface Base {
companion object {
@Suppress("INAPPLICABLE_JVM_FIELD")
@JvmField
val foo = object : Base {}
}
}