mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
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 |