Remove codegen tests out of JetNpeTest
This commit is contained in:
@@ -0,0 +1 @@
|
||||
fun box() = if (10!! == 10) "OK" else "fail"
|
||||
@@ -0,0 +1,9 @@
|
||||
fun box(): String {
|
||||
try {
|
||||
if ((null : Int?)!! == 10) return "Fail #1"
|
||||
return "Fail #2"
|
||||
}
|
||||
catch (e: Exception) {
|
||||
return "OK"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user