blob: a6c9d5a818dfcd33e853dd57c83083323c014d3e [file] [log] [blame]
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/
(function () {
var obj = {prop: 1};
var [x, {prop: y}] = [function () y, obj];
assertEq(y, 1);
assertEq(x(), 1);
})();
reportCompare(0, 0, 'ok');