summaryrefslogtreecommitdiff
path: root/tests/specs/run/issue_13562/mod1.ts
blob: 5e58f432ed36d2e92f33353295a73d3c2c9c20cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { printHello2, returnsFoo } from "./subdir2/mod2.ts";

export function returnsHi(): string {
  return "Hi";
}

export function returnsFoo2(): string {
  return returnsFoo();
}

export function printHello3() {
  printHello2();
}

export function throwsError() {
  throw Error("exception from mod1");
}