summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug768436.js
blob: b01ac0f25559c6f965b6d52bf16bf578949f1b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function f() {
    return new ({});
}
function g() {
    return ({})();
}
try {
    f();
    assertEq(0, 1);
} catch (e) {
    assertEq(e instanceof TypeError, true);
}
try {
    g();
    assertEq(0, 1);
} catch (e) {
    assertEq(e instanceof TypeError, true);
}