KT-7815 Smart completion after "as" inserts fq-name for type parameter

#KT-7815 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-06-02 22:34:54 +03:00
parent d3e4b346ce
commit e597532c7a
4 changed files with 23 additions and 10 deletions
@@ -0,0 +1,5 @@
package ppp
fun <T> foo(o: Any): T {
return o as <caret>
}
@@ -0,0 +1,5 @@
package ppp
fun <T> foo(o: Any): T {
return o as T<caret>
}