summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/info/json_output/main.ts
blob: 927bc55ed0728f177ac3b2975c0f5c05c37f1616 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { printHello3, returnsFoo2, returnsHi } from "../../subdir/mod1.ts";

printHello3();

if (returnsHi() !== "Hi") {
  throw Error("Unexpected");
}

if (returnsFoo2() !== "Foo") {
  throw Error("Unexpected");
}