summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1356822.js
blob: 0788933810aff56ffeebaf7bb3ed6b51270f4f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const d = 0;
function f() {
    var m = Math;
    (function () {
        d = m;
    })()
}
for (var i = 0; i < 4; i++) {
    try {
	f();
    } catch (e) {
	continue;
    }
    throw "Fail";
}