summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/try-catch-5.js
blob: 059ce6281e23651acb0ed1f649261b5a672c0624 (plain)
1
2
3
4
5
6
7
8
function x() {
    try {
	do {
	    var { q , gen } = t;
	} while(false);
    } catch (e) {}
}
x();