summaryrefslogtreecommitdiff
path: root/tests/testdata/run/005_more_imports.ts
blob: 6c96fac64c19e96840390d970e9f50aef35cbe19 (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");
}