Extract some codegen tests to black box testData

This commit is contained in:
Alexander Udalov
2013-01-27 20:01:55 +04:00
committed by Alexander Udalov
parent f7e0b06c2f
commit 10c5949199
12 changed files with 103 additions and 136 deletions
@@ -0,0 +1,7 @@
fun box(): String {
val iterator: Iterator<Int> = (0..0).iterator()
for (i in iterator) {
return "OK"
}
return "fail"
}