Files
kotlin-fork/idea/testData/completion/basic/OverloadFunctions.kt
T
2011-12-14 12:26:57 +04:00

24 lines
279 B
Kotlin

namespace Test.MyTest
class A {
class object {
public fun testOther() {
}
public fun testOther(a: Boolean) {
}
public fun testOther(a: Int) {
}
}
}
fun testMy() {
A.test<caret>
}
// EXIST: testOther
// NUMBER: 3