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

/*---
info: RegExp.prototype.test has not prototype property
es5id: 15.10.6.3_A6
description: Checking RegExp.prototype.test.prototype
---*/
assert.sameValue(
  RegExp.prototype.test.prototype,
  undefined,
  'The value of RegExp.prototype.test.prototype is expected to equal undefined'
);

reportCompare(0, 0);