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

export function C(): void {
  if (A != null) {
    thing();
  }
}