JS: use generation for some tests

This commit is contained in:
Alexey Tsvetkov
2015-03-04 17:46:42 +03:00
parent 7a96ca1dfb
commit ea0253770b
12 changed files with 684 additions and 422 deletions
@@ -1,13 +0,0 @@
package foo
inline fun f() { g() }
inline fun g() { h() }
inline fun h() { f() }
fun box(): String {
f()
return "OK"
}