Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/boxingOptimization/kt5493.kt
T
2014-07-17 18:43:44 +04:00

9 lines
104 B
Kotlin

fun box() : String {
try {
return "OK"
}
finally {
null?.hashCode()
}
}