blob: 2fcfdaf0cb50840688230da353b65a87d0b9a407 [file] [log] [blame]
function test() {
class C extends Boolean {}
var c = new C(true);
return c instanceof Boolean
&& c == true;
}
if (!test())
throw new Error("Test failed");