summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/spread.es6
blob: 95ee937d2494f441c2e8ab84bbb75fbefda75dee (plain)
1
2
3
4
5
6
function fn() {
  return Math.max(...[1,2,3]);
}

assertEqual(fn(), 3);
test(fn);