blob: 0751484255bc026ec1448c41cbd44e56f9fe4795 [file] [log] [blame]
void foo() {
// With ending comma.
(42, 42, 42, );
(foo: 42, bar: 42, 42, baz: 42, );
// Nested.
((42, 42), 42);
// With function inside.
((foo, bar) => 42, 42);
}