[FE] Implement temporary resolution algorithm
This commit is contained in:
committed by
TeamCityServer
parent
d923c95671
commit
c34fe8d547
+18
@@ -0,0 +1,18 @@
|
||||
class A {
|
||||
fun h1() {}
|
||||
}
|
||||
|
||||
class B {
|
||||
fun h2() {}
|
||||
}
|
||||
|
||||
fun B.foo() {
|
||||
<!UNRESOLVED_REFERENCE!>h1<!>()
|
||||
h2()
|
||||
}
|
||||
|
||||
context(A)
|
||||
fun B.bar() {
|
||||
h1()
|
||||
h2()
|
||||
}
|
||||
Reference in New Issue
Block a user