1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
159 B
Kotlin
14 lines
159 B
Kotlin
var result = "Fail"
|
|
|
|
fun setOK(): Boolean {
|
|
result = "OK"
|
|
return true
|
|
}
|
|
|
|
fun box(): String {
|
|
if (setOK()) {
|
|
} else {
|
|
}
|
|
return result
|
|
}
|