summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Tuple/prototype/slice/invoked-as-func.js
blob: 961ed9aff5a0658f1aa0a596ce9231439cfcc706 (plain)
1
2
3
4
5
6
7
// |reftest| skip-if(!this.hasOwnProperty("Tuple"))
var slice = Tuple.prototype.slice;

assertThrowsInstanceOf(function() { slice() }, TypeError,
                       "value of TupleObject must be a Tuple");

reportCompare(0, 0);