fix QuickFixTestGenerated$Expressions.testRemoveUselessCast

This commit is contained in:
Dmitry Jemerov
2015-04-27 13:32:00 +02:00
parent 94071550e3
commit 55cfd3b0c7
@@ -1,4 +1,4 @@
// "Remove cast" "true"
fun foo(a: String) {
val b = a <caret>as Any
val b = a <caret>as String
}