Files
kotlin-fork/compiler/testData/resolve/candidatesPriority/dispatchReceiverVsExtensionReceiver2.resolve
T
Stanislav Erokhin 3a9ecf0bce Change resolution priority about implicit receivers and synthesized member-like descriptors.
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
2016-01-15 13:11:38 +03:00

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