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

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