blob: 1ff68f98947c04169a066ef2f89d7533027b0bd4 [file] [edit]
function foo() {
return RegExp;
}
class C extends foo {
constructor() {
super();
super.multiline = undefined;
}
}
try {
new C();
} catch { }