Retain data flow info after string template expressions

This commit is contained in:
Alexander Udalov
2012-11-13 15:19:53 +04:00
parent 950f912154
commit 2872a0799a
3 changed files with 17 additions and 2 deletions
@@ -0,0 +1,6 @@
fun foo(x: Number, y: String?): String {
val result = "abcde $x ${x as Int} ${y!!} $x $y"
x : Int
y : String
return result
}