diff options
Diffstat (limited to 'cli/tests/testdata/info/recursive_imports/A.ts')
| -rw-r--r-- | cli/tests/testdata/info/recursive_imports/A.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/testdata/info/recursive_imports/A.ts b/cli/tests/testdata/info/recursive_imports/A.ts new file mode 100644 index 000000000..43ecdbe5e --- /dev/null +++ b/cli/tests/testdata/info/recursive_imports/A.ts @@ -0,0 +1,7 @@ +import { B } from "./B.ts"; +import { thing } from "./common.ts"; + +export function A() { + thing(); + B(); +} |
