| // WITH_STDLIB | |
| // FILE: lib.kt | |
| var log = "" | |
| inline fun foo(x: Int, action: (Int) -> Unit) = action(x) | |
| // FILE: main.kt | |
| import kotlin.test.* | |
| fun box(): String { | |
| var x = 23 | |
| foo(x) { | |
| log += "$it;" | |
| x++ | |
| log += "$it;" | |
| } | |
| if (log != "23;23;") return "fail1: $log" | |
| if (x != 24) return "fail2: $x" | |
| return "OK" | |
| } |