mirror of
https://github.com/tc39/test262.git
synced 2025-08-29 05:48:28 +02:00
18 lines
468 B
JavaScript
18 lines
468 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* The initial value of Number.prototype.constructor is the
|
|
* built-in Number constructor
|
|
*
|
|
* @path ch15/15.7/15.7.4/15.7.4.1/S15.7.4.1_A1.js
|
|
* @description Compare Number.prototype.constructor with Number
|
|
*/
|
|
|
|
//CHECK#1
|
|
if(Number.prototype.constructor !== Number){
|
|
$ERROR('#1: Number.prototype.constructor === Number');
|
|
}
|
|
|
|
|