summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1317460.js
blob: ccd6aacf12588e876cc99027685ba689d1a5576c (plain)
1
2
3
4
5
6
7
8
9
10
11
// |jit-test| error:TypeError

g = newGlobal();
g.parent = this;
g.eval("(" + function() {
    Debugger(parent).onExceptionUnwind = function() { return 0; };
} + ")()");
async function f() {
    t;
}
f();