summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1605641.js
blob: e8eded6a9b5cbd930aabc46d3cd4a12b7957b505 (plain)
1
2
3
4
5
6
7
8
// |jit-test| error:9
function thrower() {
    throw 9;
}
function f() {
    return [...{} [thrower(...["foo"])]] = "undefined";
}
f();