blob: 85846b125d55c6c5d7c1ebda1eebd6c07893b927 [file] [log] [blame]
// IS_APPLICABLE: false
fun call2(f: (Int, Int) -> Int, x: Int, y: Int) = f(x, y)
val foo = call2({ <caret>x, y -> x + y }, 40, 2)