summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/errors/bug1837366.js
blob: 0d021a0efba02e1c0f74efa2cbe63345002f6e9d (plain)
1
2
3
4
5
6
7
8
function foo() {
    try {
        foo();
        /a/.exec();
    } catch (e) {
    }
}
foo();