TypeScript/tests/baselines/reference/catch.types
2015-04-15 16:44:20 -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
}