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

10 lines
156 B
TypeScript
Raw Normal View History

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: /a.js
function C() { this.x = false; };
/** @type {number} */
C.prototype.x;
new C().x;