summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/exec/S15.10.6.2_A6.js
blob: 87f4b0238f630a5053f16efbd4f4cda68a5bfdcf (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.exec has not prototype property
es5id: 15.10.6.2_A6
description: Checking RegExp.prototype.exec.prototype
---*/
assert.sameValue(
  RegExp.prototype.exec.prototype,
  undefined,
  'The value of RegExp.prototype.exec.prototype is expected to equal undefined'
);

reportCompare(0, 0);