summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/NativeErrors/RangeError/constructor.js
blob: 65264f8206a9dece412fcb1a78db5d203c2ee2c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 19.5.6.1
description: >
  RangeError is a constructor function.
---*/

assert.sameValue(typeof RangeError, 'function', 'typeof RangeError is "function"');

reportCompare(0, 0);