summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/regexp/bug1640475.js
blob: 07c04827aff482fcbe533201e8225239a67c33cd (plain)
1
2
3
4
5
6
7
var i = 0;
oomTest(function() {
    for (var j = 0; j < 10; ++j) {
        var r = RegExp(`(?<_${(i++).toString(32)}>a)`);
        r.exec("a");
    }
});