michael@0: // |reftest| skip michael@0: // Any copyright is dedicated to the Public Domain. michael@0: // http://creativecommons.org/licenses/publicdomain/ michael@0: // Contributor: Gary Kwong michael@0: michael@0: var expect = 42; michael@0: var actual = (function({ michael@0: x: [w] michael@0: }, michael@0: x) { michael@0: with({}) {return w;} michael@0: })({x:[42]}); michael@0: michael@0: reportCompare(expect, actual, "ok");