You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR TS2377: Constructors for derived classes must contain a 'super' call.
export class B extends A {
constructor(b: i32) {
// super();
this.a = b;
}
in empty.ts(8,26)
Basically this works correctly even in runtime. But this should produce error during compilation:
The text was updated successfully, but these errors were encountered: