Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/jvmStatic/jvmStaticExternal.kt
T
2021-09-03 14:45:28 +02:00

15 lines
201 B
Kotlin
Vendored

// WITH_RUNTIME
// JVM_TARGET: 1.8
object TestObject {
@JvmStatic
external fun foo()
}
class TestClassCompanion {
companion object {
@JvmStatic
external fun foo()
}
}