Files
kotlin-fork/compiler/testData/resolve/candidatesPriority/implicitThisVsNoReceiver.resolve
T
Svetlana Isakova 3cf133bff7 changed local extensions priority
local extensions aren't longer chosen before members
2013-06-20 13:43:01 +04:00

6 lines
79 B
Plaintext

fun ~A.foo~A.foo() = 1
fun foo() = 2
class A {
fun test() = `A.foo`foo()
}