import { A } from "./A.ts";
import { thing } from "./common.ts";

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