TypeScript/tests/baselines/reference/tryCatchFinally.types
2014-08-15 14:37:48 -07:00

9 lines
147 B
Plaintext

=== tests/cases/compiler/tryCatchFinally.ts ===
try { } catch(e) { } finally { }
>e : any
try {} catch(e) {}
>e : any
try {} finally {}