mirror of https://github.com/tc39/test262.git
11 lines
311 B
JavaScript
11 lines
311 B
JavaScript
|
// 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: >
|
||
|
ReferenceError is a constructor function.
|
||
|
---*/
|
||
|
|
||
|
assert.sameValue(typeof ReferenceError, 'function', 'typeof ReferenceError is "function"');
|