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

12 lines
151 B
Plaintext

=== tests/cases/compiler/catch.ts ===
function f() {
>f : () => void
try {} catch(e) { }
>e : any
try {} catch(e) { }
>e : any
}