swc/crates/swc_ecma_parser/tests/tsc/asOperator4.ts

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);