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
class Base { new(h: inflight (): void) {} } class Derived extends Base { new(h: inflight (): void) { super(inflight () => {}); } } new Derived(inflight () => { log("hello"); });
runtime error: There is already a Construct with name 'Derived' in $Root [Default]
No response
The text was updated successfully, but these errors were encountered:
Another simpler case of this:
class Foo { pub bar() { inflight () => {}; } } let f = new Foo(); f.bar(); f.bar();
Sorry, something went wrong.
Duplicates #4925
No branches or pull requests
I tried this:
This happened:
I expected this:
No response
Is there a workaround?
No response
Anything else?
No response
Wing Version
No response
Node.js Version
No response
Platform(s)
No response
Community Notes
The text was updated successfully, but these errors were encountered: