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

15 lines
238 B
TypeScript

// @noEmit: true
// @checkJs: true
// @allowJs: true
// @Filename: bug24252.js
var A = {};
A.B = class {
m() {
/** @type {string[]} */
var x = [];
/** @type {number[]} */
var y;
y = x;
}
};