Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/thisWithLabelToProperty_caretAtLabel.kt
T
Tianyu Geng e195f0426e FIR IDE: add KtExtensionReceiverSymbol
This symbol represents the extension receiver of a callable and
currently is used as the resolution target of `this` in a callable with
extension.
2021-10-26 08:50:38 +00:00

6 lines
80 B
Kotlin
Vendored

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