blob: 8e6702c17b487a24ad02c29ca6d466fcd4c1973e [file] [log] [blame]
function test() {
class C {
method() { return typeof C === "function"; }
}
var M = C.prototype.method;
C = undefined;
return C === undefined && M();
}
if (!test())
throw new Error("Test failed");