1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
11 lines
119 B
Kotlin
11 lines
119 B
Kotlin
fun box(): String {
|
|
var a: Int
|
|
a = 12
|
|
fun f() {
|
|
foo(a)
|
|
}
|
|
|
|
return "OK"
|
|
}
|
|
|
|
fun foo(l: Int) {} |