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