d3c91ee9be
That is, for a labeled `super`, the keyword should resolve to the super type and the label should be resolved to the current type.
8 lines
99 B
Kotlin
Vendored
8 lines
99 B
Kotlin
Vendored
interface A {
|
|
fun a() {}
|
|
}
|
|
class Foo : A {
|
|
fun foo() {
|
|
s<caret>uper@Foo.a()
|
|
}
|
|
} |