Files
kotlin-fork/analysis/analysis-api/testData/referenceResolve/superWithLabel_caretAtLabel.kt
T
Tianyu Geng d3c91ee9be FIR IDE: align resolution behavior of super with FE1.0
That is, for a labeled `super`, the keyword should resolve to the super
type and the label should be resolved to the current type.
2021-10-26 08:50:37 +00:00

8 lines
99 B
Kotlin
Vendored

interface A {
fun a() {}
}
class Foo : A {
fun foo() {
super@F<caret>oo.a()
}
}