Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / Array / prototype / join / S15.4.4.5_A6.6.js
blob1772e0438605e0db0cf4ea9d3e0fc620ea070c81
1 // Copyright 2009 the Sputnik authors.  All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /*---
5 info: The join property of Array has not prototype property
6 esid: sec-array.prototype.join
7 description: Checking Array.prototype.join.prototype
8 ---*/
10 if (Array.prototype.join.prototype !== undefined) {
11   throw new Test262Error('#1: Array.prototype.join.prototype === undefined. Actual: ' + (Array.prototype.join.prototype));
14 reportCompare(0, 0);