1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
12 lines
168 B
Kotlin
12 lines
168 B
Kotlin
fun foo(): String {
|
|
return if (true) {
|
|
var x = "OK"
|
|
fun foo() { x += "fail" }
|
|
x
|
|
} else "fail"
|
|
}
|
|
|
|
fun box(): String {
|
|
return foo()
|
|
}
|