Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlowInfoTraversal/StringTemplate.kt
T
2012-11-16 17:56:17 +04:00

7 lines
141 B
Kotlin

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