Inline util functions renaming

This commit is contained in:
Michael Bogdanov
2015-04-28 17:28:55 +03:00
parent fe23f23664
commit 49f063522c
14 changed files with 55 additions and 58 deletions
@@ -1,5 +1,5 @@
fun f(a: Int) {
run(fun () {
run2(fun () {
<lineMarker>f</lineMarker>(a - 1)
})
}
@@ -12,3 +12,5 @@ fun ff(a: Int) {
inline fun <T> run1(noinline f: () -> T): T { }
inline fun <T> run2(f: () -> T): T { }
@@ -5,4 +5,4 @@ fun test() {
<lineMarker descr="Recursive call">f</lineMarker>(a-1)
}
}
}
}