2f159bb64b
Fix related issues with nested classes
15 lines
142 B
Kotlin
Vendored
15 lines
142 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 |