Files
kotlin-fork/compiler/testData/codegen/box/traits/indirectlyInheritPropertyGetter.kt
T
2019-11-19 11:00:09 +03:00

12 lines
144 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
interface A {
val str: String
get() = "OK"
}
interface B : A
class Impl : B
fun box() = Impl().str