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

printHello3();

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

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