Fixed KT-3807 Wrong completion for class/trait with extesion function

#KT-3807 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-09-18 17:50:50 +04:00
committed by valentin
parent e30998d3c1
commit 94c9338e3c
6 changed files with 35 additions and 15 deletions
@@ -0,0 +1,10 @@
class Foo {
fun Int.bar() = this
}
fun main(args: Array<String>) {
val v = Foo()
v.<caret>
}
// ABSENT: bar