Files
kotlin-fork/compiler/testData/codegen/regressions/kt248.kt
T
2013-01-24 21:12:27 +04:00

8 lines
189 B
Kotlin

fun box() : String {
val b = true as? Boolean //exception
val i = 1 as Int //exception
val j = 1 as Int? //ok
val s = "s" as String //ok
return "OK"
}