summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/regexp/bug1703750.js
blob: 4be2d7748adff986309c7d395015dd666ebb1f34 (plain)
1
2
3
4
5
6
7
function foo() {
    const b = "".match();
    try {
	foo();
    } catch {}
}
foo()