11 lines
74 B
Kotlin
11 lines
74 B
Kotlin
trait A {
|
|
fun foo() {}
|
|
}
|
|
|
|
trait B : A {}
|
|
|
|
class C(b : B) : B by b {
|
|
|
|
}
|
|
|