Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / S15.10.2.13_A1_T17.js
blobe41ac621f6838ede8090de2a2c1dc91feb91fe48
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: |
6     The production CharacterClass :: [ [lookahead \notin {^}] ClassRanges ]
7     evaluates by evaluating ClassRanges to obtain a CharSet and returning
8     that CharSet and the boolean false
9 es5id: 15.10.2.13_A1_T17
10 description: Execute /[]/.exec("a[b\n[]\tc]d") and check results
11 ---*/
13 var __executed = /[]/.exec("a[b\n[]\tc]d");
15 assert.sameValue(__executed, null, 'The value of __executed is expected to be null');
17 reportCompare(0, 0);