Migrate testdata to new lambda syntax
This commit is contained in:
@@ -5,7 +5,7 @@ var b = 0
|
||||
fun loop(times: Int) {
|
||||
var left = times
|
||||
while (left > 0) {
|
||||
val u = {(value: Int) ->
|
||||
val u = { value: Int ->
|
||||
b = b + 1
|
||||
}
|
||||
u(left--)
|
||||
|
||||
Reference in New Issue
Block a user