deno/tests/014_duplicate_import.ts
Ryan Dahl 9dfebbc949
Fix eslint warnings (#2151)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
2019-04-21 16:40:10 -04:00

10 lines
255 B
TypeScript

// with all the imports of the same module, the module should only be
// instantiated once
import "./subdir/auto_print_hello.ts";
import "./subdir/auto_print_hello.ts";
(async (): Promise<void> => {
await import("./subdir/auto_print_hello.ts");
})();