summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/precedence-3.js
blob: 761b1718885c3ea8395b3238e9a2e137c1399d55 (plain)
1
2
3
4
// => binds tighter than , (on the other side)

var h = (a => a, 13);  // sequence expression
assertEq(h, 13);