summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/join/S15.4.4.5_A6.6.js
blob: 1772e0438605e0db0cf4ea9d3e0fc620ea070c81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: The join property of Array has not prototype property
esid: sec-array.prototype.join
description: Checking Array.prototype.join.prototype
---*/

if (Array.prototype.join.prototype !== undefined) {
  throw new Test262Error('#1: Array.prototype.join.prototype === undefined. Actual: ' + (Array.prototype.join.prototype));
}

reportCompare(0, 0);