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

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