Added tests for control flow graph construction

This commit is contained in:
svtk
2011-10-24 13:03:02 +04:00
parent f074366694
commit b230b3494d
4 changed files with 176 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
fun t1() {
for (i in 1..2) {
doSmth(i)
}
}
fun doSmth(i: Int) {}