mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
7 lines
195 B
Kotlin
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
|
|
}
|