7ce62a5b64
A single test file will be generated out of box/ directory
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) {} |