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

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

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

export function printHello3(): void {
  printHello2();
}

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