12 lines
151 B
Kotlin
Vendored
12 lines
151 B
Kotlin
Vendored
interface B {
|
|
fun foo(): Int
|
|
}
|
|
|
|
class A {
|
|
val String.x: Int get() {
|
|
return field.foo()
|
|
}
|
|
|
|
val String.field: B get() = TODO()
|
|
}
|