mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
|
// @checkJs: true
|
||
|
// @allowJS: true
|
||
|
// @noEmit: true
|
||
|
// @Filename: bug24934.js
|
||
|
export function abc(a, b, c) { return 5; }
|
||
|
module.exports = { abc };
|
||
|
// @Filename: use.js
|
||
|
import { abc } from './bug24934';
|
||
|
abc(1, 2, 3);
|