Files
kotlin-fork/compiler/testData/diagnostics/tests/ExternalAndAbstract.fir.kt
T

9 lines
119 B
Kotlin
Vendored

abstract class A {
abstract val x : Int
external get
}
interface B {
val x: Int
external get
}