TypeScript/tests/baselines/reference/catchClauseWithTypeAnnotation.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
340 B
Plaintext

tests/cases/compiler/catchClauseWithTypeAnnotation.ts(2,11): error TS1013: Catch clause parameter cannot have a type annotation.
==== tests/cases/compiler/catchClauseWithTypeAnnotation.ts (1 errors) ====
try {
} catch (e: any) {
~
!!! error TS1013: Catch clause parameter cannot have a type annotation.
}