Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByFqName/delegation/Property.kt
T

7 lines
85 B
Kotlin
Vendored

// Derived
interface Base {
val boo: String
}
class Derived(x: Base): Base by x