summaryrefslogtreecommitdiff
path: root/cli/tests/recursive_imports/A.ts
blob: 04ef61581fe49d29dd9b0ce3f8c6161a4ce43c23 (plain)
1
2
3
4
5
6
7
import { B } from "./B.ts";
import { thing } from "./common.ts";

export function A(): void {
  thing();
  B();
}