8 lines
111 B
Kotlin
Vendored
8 lines
111 B
Kotlin
Vendored
open class C {
|
|
open val foo: String get() = "FAIL1"
|
|
}
|
|
|
|
interface I {
|
|
val foo: String get() = "FAIL2"
|
|
}
|