Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/native/noBody.kt
T

26 lines
300 B
Kotlin
Vendored

// FIR_IDENTICAL
import kotlin.jvm.*
external fun foo()
class C {
external fun foo()
companion object {
external fun foo()
}
}
object O {
external fun foo()
}
fun test() {
class Local {
external fun foo()
}
object {
external fun foo()
}
}