summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testDestructuringVarInsideWith.js
blob: b233c9ceb2f3cdda489f30f18e0248c9cb71aebb (plain)
1
2
3
4
with ({b:1}) {
    const [ b ] = [];
    assertEq(b, undefined);
}