[PSI, FE, PSI2IR] Use labels for referencing specific receiver
This commit is contained in:
committed by
TeamCityServer
parent
aaabf5e1ca
commit
1bcaeabd84
+19
@@ -0,0 +1,19 @@
|
||||
interface Context {
|
||||
fun h() {}
|
||||
}
|
||||
|
||||
open class A {
|
||||
open fun f() {}
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun f() {}
|
||||
|
||||
context(Context)
|
||||
inner class C {
|
||||
fun g() {
|
||||
super@B.f()
|
||||
<!DEBUG_INFO_MISSING_UNRESOLVED!>super<!><!UNRESOLVED_REFERENCE!>@Context<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>h<!>()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user