Migrate testdata to new lambda syntax
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
fun box() : String {
|
||||
val y = 12
|
||||
val op = { (x:Int) -> (x + y).toString() }
|
||||
val op = { x:Int -> (x + y).toString() }
|
||||
|
||||
val op2 : Int.(Int) -> String = { op(this + it) }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user