summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug956156.js
blob: 36e1d9bc5eca1062aa321b8db945ade8218642e7 (plain)
1
2
3
4
5
6
7
// |jit-test| error:TypeError
function f() {
    ((function g(x) {
        g(x.slice)
    })([]))
}
new f