Files
kotlin-fork/compiler/testData/codegen/box/exclExcl/genericNull.kt
T
2013-02-06 17:54:29 +04:00

13 lines
159 B
Kotlin

fun foo<T>(t: T) {
t!!
}
fun box(): String {
try {
foo<Any?>(null)
} catch (e: Exception) {
return "OK"
}
return "Fail"
}