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/subdir2/mod2.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 testdata/subdir/subdir2/mod2.ts (limited to 'testdata/subdir/subdir2') diff --git a/testdata/subdir/subdir2/mod2.ts b/testdata/subdir/subdir2/mod2.ts new file mode 100644 index 000000000..c88d4708c --- /dev/null +++ b/testdata/subdir/subdir2/mod2.ts @@ -0,0 +1,9 @@ +import { printHello } from "../print_hello.ts"; + +export function returnsFoo(): string { + return "Foo"; +} + +export function printHello2(): void { + printHello(); +} -- cgit v1.2.3