Files
kotlin-fork/compiler/testData/asJava/lightClasses/DelegatedNested.kt
T
2022-06-28 17:57:30 +02:00

14 lines
119 B
Kotlin
Vendored

// p.B
package p
class B {
class A(private val f: I) : I by f {
}
}
interface I {
fun g()
fun f()
}