Fixed one more case of no-auto-insertion after "as"

This commit is contained in:
Valentin Kipyatkov
2014-07-23 19:01:46 +02:00
parent 7546a17539
commit be0e78b11a
4 changed files with 29 additions and 6 deletions
@@ -0,0 +1,4 @@
fun bar(o: Any): String {
val v: String = o as <caret>
return ""
}
@@ -0,0 +1,4 @@
fun bar(o: Any): String {
val v: String = o as String<caret>
return ""
}