blob: ca66faeffbf7cacc91fdeb5981228dea97dfef50 [file] [log] [blame]
function test() {
new WeakSet();
try {
WeakSet();
return false;
} catch(e) {
return true;
}
}
if (!test())
throw new Error("Test failed");