summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch08/8.6/8.6.2/S8.6.2_A7.js
blob: 6e996d7794a6686f2768d715f2046f9ffbbfc0f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * Objects that implement internal method [[Construct]] are called constructors. Math object is NOT constructor
 *
 * @path ch08/8.6/8.6.2/S8.6.2_A7.js
 * @description Checking if execution of "var objMath=new Math" passes
 * @negative
 */

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
var objMath=new Math;

//////////////////////////////////////////////////////////////////////////////