Moved tests
that are used both for codegen & diagnostics to codegen/box/diagnostics
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
fun test() {
|
||||
[tailRecursive] fun g3(counter : Int) {
|
||||
if (counter > 0) { g3(counter - 1) }
|
||||
}
|
||||
g3(1000000)
|
||||
}
|
||||
|
||||
fun box() : String {
|
||||
test()
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user