Migrate testdata to new lambda syntax
This commit is contained in:
@@ -6,5 +6,5 @@ fun apply(f: (Int) -> Int, t: Int): Int {
|
||||
|
||||
|
||||
fun box(): Boolean {
|
||||
return apply({(a: Int) -> a + 5 }, 3) == 8
|
||||
return apply({ a: Int -> a + 5 }, 3) == 8
|
||||
}
|
||||
Reference in New Issue
Block a user