Files
kotlin-fork/compiler/testData/asJava/lightClasses/DelegatedNested.kt
T
Dmitry Gridin 97ce502cbe [light classes] drop old light classes and backend: iteration #2
drop javaFileStub and fix tests

^KT-48773
2022-06-28 11:44:39 +00: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()
}