Migrate testdata to new lambda syntax
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
fun box(): String {
|
||||
fun rec(n : Int) {
|
||||
val x = { (m : Int) ->
|
||||
val x = { m : Int ->
|
||||
if (n > 0) rec(n - 1)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user