10 lines
159 B
Kotlin
Vendored
10 lines
159 B
Kotlin
Vendored
package test
|
|
|
|
interface Base {
|
|
companion object {
|
|
@Suppress("INAPPLICABLE_JVM_FIELD")
|
|
@JvmField
|
|
val foo = object : Base {}
|
|
}
|
|
}
|