summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug842429.js
blob: 50434c42a21e6d8e64eaa945f1ae81a80362095d (plain)
1
2
3
4
5
6
7
8
9
10
11
function* gen() {
    try {
	yield 3;
    } finally {
	quit();
    }
}
try {
    for (var i of gen())
	foo();
} catch (e) {}