mirror of
https://github.com/swc-project/swc.git
synced 2024-12-29 16:42:28 +03:00
14 lines
198 B
TypeScript
14 lines
198 B
TypeScript
|
// @verbatimModuleSyntax: true
|
||
|
// @module: esnext
|
||
|
|
||
|
export {};
|
||
|
import f1 = NonExistent;
|
||
|
|
||
|
namespace Foo {
|
||
|
export const foo = 1;
|
||
|
export type T = any;
|
||
|
}
|
||
|
|
||
|
import f2 = Foo.foo;
|
||
|
import f3 = Foo.T;
|