summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/for-of/typedarrays-3.js
blob: beb205d48e872b1c25aad837277f78fdf2b85871 (plain)
1
2
3
4
// Destructuring does not occur when the target of for-of is an empty typed array.

for (var [[x]] of new Int32Array(0))
    throw "FAIL";