summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/of/not-a-constructor.js
blob: b397a820cdf064075283b43c4267b51ab917b837 (plain)
1
2
3
4
5
6
7
8
9
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))

assertEq(isConstructor(Tuple.of), false);

assertThrowsInstanceOf(() => {
  new Tuple.of(1, 2, 3);
}, TypeError, '`new Tuple.of(1, 2, 3)` throws TypeError');

reportCompare(0, 0);