mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +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);
|