diff options
Diffstat (limited to 'cli/tests/tla3/b.js')
-rw-r--r-- | cli/tests/tla3/b.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/tla3/b.js b/cli/tests/tla3/b.js new file mode 100644 index 000000000..b74c659e4 --- /dev/null +++ b/cli/tests/tla3/b.js @@ -0,0 +1,7 @@ +import { foo } from "./timeout_loop.js"; +import { collection } from "../top_level_await_circular.js"; + +console.log("collection in b", collection); +console.log("foo in b", foo); + +export const a = "a"; |