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

14 lines
187 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @Filename: /b.js
class A { constructor() { this.x = 0; } }
/** @augments A */
class B {
m() {
return this.x;
}
}