1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
126 B
Kotlin
10 lines
126 B
Kotlin
fun box(): String {
|
|
while (false);
|
|
|
|
var x = 0
|
|
while (x++<5);
|
|
if (x != 6) return "Fail: $x"
|
|
|
|
return "OK"
|
|
}
|