Files
kotlin-fork/compiler/testData/codegen/regressions/kt248.jet
T
2011-10-20 16:21:18 +02:00

8 lines
189 B
Plaintext

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"
}