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

12 lines
171 B
TypeScript

// @allowJs: true
// @noEmit: true
// @checkJs: true
// @Filename: bug27341.js
if (false) {
/**
* @param {string} s
*/
const x = function (s) {
};
}