7 lines
81 B
Kotlin
7 lines
81 B
Kotlin
// Derived
|
|
|
|
trait Base {
|
|
val boo: String
|
|
}
|
|
|
|
class Derived(x: Base): Base by x |