summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/slice/S15.5.4.13_A7.js
blob: aba0108631746ee265bd3b7c0c45654b6a9e773c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: String.prototype.slice can't be used as constructor
es5id: 15.5.4.13_A7
description: Checking if creating the String.prototype.slice object fails
---*/

var FACTORY = String.prototype.slice;

assert.throws(TypeError, function() {
  new FACTORY;
});

reportCompare(0, 0);