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