KT-825 Completion doesn't show overloaded functions

This commit is contained in:
Nikolay Krasko
2011-12-14 12:26:57 +04:00
parent 31b536a8e5
commit 3cf7a44840
7 changed files with 89 additions and 1 deletions
@@ -0,0 +1,24 @@
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