TypeScript/tests/baselines/reference/catchClauseWithTypeAnnotation.js

11 lines
138 B
TypeScript

//// [catchClauseWithTypeAnnotation.ts]
try {
} catch (e: any) {
}
//// [catchClauseWithTypeAnnotation.js]
try {
}
catch (e) {
}