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

12 lines
252 B
Plaintext

=== tests/cases/compiler/catch.ts ===
function f() {
>f : () => void, Symbol(f, Decl(catch.ts, 0, 0))
try {} catch(e) { }
>e : any, Symbol(e, Decl(catch.ts, 1, 17))
try {} catch(e) { }
>e : any, Symbol(e, Decl(catch.ts, 2, 17))
}