mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
//@module: commonjs
|
|
//@filename: foo.ts
|
|
|
|
export function foo() { }
|
|
|
|
//@filename: bar.ts
|
|
import { foo } from './foo';
|
|
|
|
// These should emit identically
|
|
<any>foo;
|
|
(foo as any);
|