Files
kotlin-fork/compiler/testData/asJava/lightClasses/DelegatedNested.kt
T
2021-10-27 17:06:31 +02:00

17 lines
161 B
Kotlin
Vendored

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