functionmain(){classBase{}classDerivedextendsBase{constructor(){super();letv=0xffff;try{// Ensure this statement doesn't get DCE'ed.v&=0xff;// Calling |super()| twice throws an error.super();}catch{}assertEq(v,255);}}for(leti=0;i<15;i++){newDerived();}}main();main();