6 lines
75 B
Kotlin
Vendored
6 lines
75 B
Kotlin
Vendored
interface A {
|
|
var foo: String
|
|
}
|
|
|
|
class B(override val foo: String) : A
|