diff --git a/test.ts b/test.ts new file mode 100644 index 00000000..c9da7bdd --- /dev/null +++ b/test.ts @@ -0,0 +1,9 @@ +async function test_Function() { + return 1+1; +} + +for (let index = 0; index < 100; index++) { + await test_Function(); + let a = "test"; +} +