summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1317460.js
blob: 87da637e7a1cb837ec8353280536839d428df18d (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() 0;
} + ")()");
async function f() {
    t;
}
f();