summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBug666003.js
blob: b508e7aa559ddb974ad2a9a562f60ef73ffc11fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function f() {
    f = function() { g(); };
    f();
}
g = f;

var caught = false;
try {
    f();
} catch(e) {
    caught = true;
}
assertEq(caught, true);