diff options
Diffstat (limited to 'js/src/jit-test/tests/regexp/bug1718842-2.js')
-rw-r--r-- | js/src/jit-test/tests/regexp/bug1718842-2.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/regexp/bug1718842-2.js b/js/src/jit-test/tests/regexp/bug1718842-2.js new file mode 100644 index 0000000000..88f76046f7 --- /dev/null +++ b/js/src/jit-test/tests/regexp/bug1718842-2.js @@ -0,0 +1,9 @@ +var g = newGlobal(); + +g.enableTrackAllocations(); + +var re1 = RegExp("(?<a>a)"); +var re2 = g.RegExp("(?<a>a)"); + +re1.exec("a"); +re2.exec("a"); |