Basic completion shows items from smart completion after "as" + do not insert any tail in basic completion

This commit is contained in:
Valentin Kipyatkov
2015-08-06 20:23:50 +03:00
parent be0a0e4401
commit e6f5cefce3
16 changed files with 216 additions and 91 deletions
@@ -0,0 +1,13 @@
class Xx1
class Xx2
class Xx3
fun foo(xx: Xx2){}
fun bar(o: Any) {
foo(o as Xx<caret>)
}
// ORDER: Xx2
// ORDER: Xx1
// ORDER: Xx3