summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/six-speed/tests/rest.es6
blob: 41e4d916115ae3d25078c7f2af2d47bc94cf11f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function fn(foo, ...args) {
  return args[0];
}

assertEqual(fn(), undefined);
assertEqual(fn(2), undefined);
assertEqual(fn(2, 4), 4);

test(function() {
  fn();
  fn(2);
  fn(2, 4);
});