Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/thisInPropertyInitializer.fir.kt
T

9 lines
190 B
Kotlin
Vendored

interface Base {
fun foo()
}
val String.test: Base = <!EXTENSION_PROPERTY_WITH_BACKING_FIELD!>object: Base<!> {
override fun foo() {
this<!UNRESOLVED_LABEL!>@test<!>
}
}