Files
kotlin-fork/compiler/testData/codegen/box/traits/indirectlyInheritPropertyGetter.kt
T
Alexander Udalov 98ce0d529c Fix incorrect 'original' in property accessors
#KT-3930 Fixed
2015-06-17 16:23:56 +03:00

11 lines
114 B
Kotlin
Vendored

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