summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arrow-functions/associativity-3.js
blob: 2be671c5b9253855b593dd2fae2e1aa5d471eac8 (plain)
1
2
3
4
5
// Arrow right-associativity with +=

var s = "";
s += x => x.name;
assertEq(s, "x => x.name");