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

8 lines
122 B
Kotlin
Vendored

interface Base {
fun foo()
}
val String.test: Base = object: Base {
override fun foo() {
this@test
}
}