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

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