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