Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
(function () {
var [x, y] = [1, function () { return x; }];
assertEq(y(), 1);
})();
reportCompare(0, 0, 'ok');