Files
kotlin-fork/compiler/testData/resolve/candidatesPriority/localVsImplicitThis.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

8 lines
103 B
Plaintext
Vendored

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