We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
4.3.0-dev.20210406
Using --noImplicitOverride:
--noImplicitOverride
export class Foo { kind = 1 } class SubFoo extends Foo { static kind = '123'; }
On static kind = 123, I see:
static kind = 123
This member must have an 'override' modifier because it overrides a member in the base class 'Foo'.
I don't think this should be an issue. SubFoo.kind is distinct from the Foo.kind instance property
SubFoo.kind
Foo.kind
The text was updated successfully, but these errors were encountered:
Thanks! I'll take a look soon
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug Report
🔎 Search Terms
🕗 Version & Regression Information
4.3.0-dev.20210406
💻 Code
Using
--noImplicitOverride
:🙁 Actual behavior
On
static kind = 123
, I see:🙂 Expected behavior
I don't think this should be an issue.
SubFoo.kind
is distinct from theFoo.kind
instance propertyThe text was updated successfully, but these errors were encountered: