Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/thisInPropertyInitializer.fir.kt
T
2021-02-10 12:29:34 +03:00

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<!>
}
}