8 lines
189 B
Kotlin
Vendored
8 lines
189 B
Kotlin
Vendored
interface Base {
|
|
fun foo()
|
|
}
|
|
val String.test: Base = <!EXTENSION_PROPERTY_WITH_BACKING_FIELD!>object: Base<!> {
|
|
override fun foo() {
|
|
<!UNRESOLVED_LABEL!>this@test<!>
|
|
}
|
|
} |