Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/wrongTarget.fir.kt
T
2023-01-09 08:57:08 +00:00

22 lines
339 B
Kotlin
Vendored

external annotation class A(val x: Int)
val x: Int
external get() = definedExternally
class B
val B.x: Int
external get() = definedExternally
class C {
val a: Int
external get() = definedExternally
}
external class D {
val a: Int
external get() = definedExternally
}
external data class E(val x: Int)