summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/spread-literal.es6
blob: b180fb5587eee60b9badb487e56c8cb677385937 (plain)
1
2
3
4
5
function fn() {
  return [1, ... [1, 2, 3]];
}
assertEqual(fn()[3], 3);
test(fn);