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

12 lines
185 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: callOfPropertylessConstructorFunction.js
/**
* @constructor
*/
function Dependency(j) {
return j
}
Dependency({})