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

16 lines
424 B
Plaintext
Raw Normal View History

tests/cases/compiler/scopingInCatchBlocks.ts(9,9): error TS2304: Cannot find name 'ex1'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/scopingInCatchBlocks.ts (1 errors) ====
try { } catch(ex1) {
throw ex1;
}
try { } catch(ex1) { } // should not error
try { } catch(ex1) { } // should not error
var x = ex1; // should error
~~~
!!! error TS2304: Cannot find name 'ex1'.
2014-07-13 01:04:16 +02:00