blob: fce57236dd9f84e2d279de9a28c0fc2d028548d5 [file] [log] [blame]
// This test passes if it does not crash.
try {
(function () {
let a = {
get val() {
[...{a = 1.45}] = [];
a.val.x;
},
};
a.val;
})();
} catch (e) {
}