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
classBase{n=3}classFooextendsBase{test(){console.log(super.n)// type system says it should be a number, but it is undefined}}newFoo().test()// logs "undefined"
Expected behavior:
Should be some sort of type error, because clearly it is undefined