blob: b2ff9d201e5b360470829daa8d1a64e1073db1d7 [file] [log] [blame]
function test() {
var f = "foo";
return ({f() { return f; }}).f() === "foo";
}
if (!test())
throw new Error("Test failed");