3a9ecf0bce
Change resolution to consider extensions to implicit receiver before members of another implicit receiver. Make synthesized member-like extensions resolve right after the members. #KT-10510 Fixed #KT-10219 Fixed
10 lines
100 B
Plaintext
Vendored
10 lines
100 B
Plaintext
Vendored
class A
|
|
|
|
class B {
|
|
~foo~fun foo() = 2
|
|
|
|
fun A.bar() = `A.foo`foo()
|
|
}
|
|
|
|
~A.foo~fun A.foo() = 1
|