Files
kotlin-fork/compiler/testData/klibABI/removeOpenProperty/lib1/l1.kt
T

8 lines
111 B
Kotlin
Vendored

open class C {
open val foo: String get() = "FAIL1"
}
interface I {
val foo: String get() = "FAIL2"
}