TypeScript/tests/baselines/reference/catchClauseWithBindingPattern1.errors.txt

10 lines
332 B
Plaintext
Raw Normal View History

2015-02-27 02:42:46 +01:00
tests/cases/compiler/catchClauseWithBindingPattern1.ts(3,8): error TS1195: Catch clause variable name must be an identifier.
==== tests/cases/compiler/catchClauseWithBindingPattern1.ts (1 errors) ====
try {
}
catch ({a}) {
~
!!! error TS1195: Catch clause variable name must be an identifier.
}