Files
kotlin/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/StringTemplate.kt
2014-10-01 18:52:52 +04:00

7 lines
195 B
Kotlin

fun foo(x: Number, y: String?): String {
val result = "abcde $x ${x as Int} ${y!!} $x $y"
<!DEBUG_INFO_SMARTCAST!>x<!> : Int
<!DEBUG_INFO_SMARTCAST!>y<!> : String
return result
}