Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / syntax-err-arithmetic-modifiers-should-not-unicode-case-fold-i.js
blob7f38b553f24fe893a75995d95246488e26628f7e
1 // |reftest| skip -- regexp-modifiers is not supported
2 // Copyright (C) 2024 Igalia, S.L. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 description: Code points other than "i", "m", "s" should not be case-folded to "i", "m", or "s" (arithmetic regular expression flags)
7 esid: sec-patterns-static-semantics-early-errors
8 features: [regexp-modifiers]
9 info: |
10     Atom :: ( ? RegularExpressionFlags - RegularExpressionFlags : Disjunction )
11     ...
13 ---*/
15 assert.throws(SyntaxError, function () {
16   RegExp("(?-İ:a)", "iu");
17 }, 'RegExp("(?-İ:a)", "iu"): ');
19 reportCompare(0, 0);