Details
Description
For some weird reason we support missing label parameter name in closure (_ x) only for the first parameter
foo({ (_ x) in print(x) }) // ok foo({ (_ x, _ y) in print(x) }) // we fail to parse second parameter foo({ (x, _ y) in print(x) }) // we fail to parse second parameter