blob: 8617a79e1cf61d9a73bfcbb73dad436ef0c070dc [file] [log] [blame]
class A {
val p : Int = try{
1
} catch(e: Exception) {
throw RuntimeException()
}
}
fun box() : String {
if (A().p != 1) return "fail 1"
return "OK"
}