Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/thisWithLabelToFunction_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

5 lines
66 B
Kotlin
Vendored

class Foo {
fun String.foo() {
this@f<caret>oo
}
}