-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] inheritance of static methods doesn't work #40327
Comments
I've the same problem in my small class.
|
@RyanCavanaugh why was this bug not fixed 3 years later? that is, LITERALLY, typescript DOES NOT SUPPORT extending static methods o_O |
@RyanCavanaugh is this something wich is planed to be fixed at some time? And shouldn't #32452 also be closed as duplicate? |
@MaxmaxmaximusAWS maybe you should open this again, the other issues are so far behind |
This issue has been marked as a 'Duplicate' and has seen no recent activity. It has been automatically closed for house-keeping purposes. |
i have error:
Expected Behavior:
If I use the class name to access static methods, then inheritance naturally also does not work, and
Cat.say()
does not calls withnew Cat()
, cuznew Cat()
callsAnimal.say()
The text was updated successfully, but these errors were encountered: