Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/StringTemplate.kt
T
2013-12-11 19:53:50 +04:00

7 lines
193 B
Kotlin

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