Files
kotlin-fork/compiler/testData/resolve/candidatesPriority/implicitThisVsNoReceiver.resolve
T
2015-12-14 16:49:29 +03:00

6 lines
84 B
Plaintext
Vendored

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