blob: 931aa689d8d929e42a89d17d09b3f25c8916d6ef [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: |
Objects that implement internal method [[Construct]] are called
constructors. Math object is NOT constructor
es5id: 8.6.2_A7
description: Checking if execution of "var objMath=new Math" passes
---*/
assert.throws(TypeError, function() {
var objMath=new Math;
});