From ee9cfb5a60cbe68c7daa5e7edd292486e697bfa4 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 18 May 2018 11:59:05 -0400 Subject: Add testdata/005_more_imports.ts --- testdata/subdir/mod1.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 testdata/subdir/mod1.ts (limited to 'testdata/subdir/mod1.ts') diff --git a/testdata/subdir/mod1.ts b/testdata/subdir/mod1.ts new file mode 100644 index 000000000..c09755a3b --- /dev/null +++ b/testdata/subdir/mod1.ts @@ -0,0 +1,13 @@ +import { returnsFoo, printHello2 } from "./subdir2/mod2.ts"; + +export function returnsHi(): string { + return "Hi"; +} + +export function returnsFoo2(): string { + return returnsFoo(); +} + +export function printHello3(): void { + printHello2(); +} -- cgit v1.2.3