2011-10-03 13:04:52 -07:00

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');
}