TypeScript/tests/baselines/reference/tryCatchFinally.types
2015-04-13 14:29:37 -07:00

9 lines
235 B
Plaintext

=== tests/cases/compiler/tryCatchFinally.ts ===
try { } catch(e) { } finally { }
>e : any, Symbol(e, Decl(tryCatchFinally.ts, 0, 14))
try {} catch(e) {}
>e : any, Symbol(e, Decl(tryCatchFinally.ts, 2, 13))
try {} finally {}