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

printHello3();

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

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