TypeScript/tests/cases/conformance/jsdoc/callOfPropertylessConstructorFunction.ts

12 lines
185 B
TypeScript
Raw Normal View History

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