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