13 lines
122 B
Kotlin
Vendored
13 lines
122 B
Kotlin
Vendored
// p.B
|
|
package p
|
|
|
|
class B(private val f: I) : I by f {
|
|
}
|
|
|
|
interface I {
|
|
fun g()
|
|
|
|
fun f()
|
|
}
|
|
|
|
// LAZINESS:NoLaziness |