TypeScript/tests/baselines/reference/parserCatchClauseWithTypeAnnotation1.js

12 lines
155 B
TypeScript

//// [parserCatchClauseWithTypeAnnotation1.ts]
try {
} catch (e: Error) {
}
//// [parserCatchClauseWithTypeAnnotation1.js]
try {
}
catch (e) {
}