blob: cec27d07611cdd7ca39bbfd05f2c527f9fe95268 [file] [log] [blame]
function test() {
var f = Object.freeze({});
var m = new WeakMap;
m.set(f, 42);
return m.get(f) === 42;
}
if (!test())
throw new Error("Test failed");