TypeScript/tests/baselines/reference/tryCatchFinally.types

9 lines
235 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/tryCatchFinally.ts ===
try { } catch(e) { } finally { }
2015-04-13 23:01:57 +02:00
>e : any, Symbol(e, Decl(tryCatchFinally.ts, 0, 14))
2014-08-15 23:33:16 +02:00
try {} catch(e) {}
2015-04-13 23:01:57 +02:00
>e : any, Symbol(e, Decl(tryCatchFinally.ts, 2, 13))
2014-08-15 23:33:16 +02:00
try {} finally {}