Skip to content

Commit

Permalink
Add a test for denoland/deno#8625
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 6, 2020
1 parent 9799a90 commit b0ceece
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bundler/tests/fixture/deno-8625/input/bar.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { Foo } from "./foo"

const bar = Foo('bar')

export default bar
4 changes: 4 additions & 0 deletions bundler/tests/fixture/deno-8625/input/entry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import * as foo from "./foo"
import bar from "./bar"

console.log(foo, bar)
3 changes: 3 additions & 0 deletions bundler/tests/fixture/deno-8625/input/foo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function Foo(name: string) {
return 'foo' + name
}

0 comments on commit b0ceece

Please sign in to comment.