We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4ff58d commit 48f0380Copy full SHA for 48f0380
tests/cases/compiler/noImplicitAnyLoopCrash.ts
@@ -0,0 +1,5 @@
1
+// @noImplicitAny: true
2
+let foo = () => {}; // if you remove or change foo definition to not a function, bug disappears
3
+let bar; // if you add type annotation here, bug disappears
4
+while (1) // if you remove while, bug disappears
5
+ bar = ~foo(...bar); // if you remove unary or spread operator, bug disappears
0 commit comments