Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/thisWithLabelToProperty_caretAtLabel.kt
T

6 lines
87 B
Kotlin
Vendored

class Foo {
val String.foo : Any
get() {
return this@f<caret>oo
}
}