TypeScript/tests/baselines/reference/catch.types

12 lines
151 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/catch.ts ===
function f() {
>f : () => void
2014-08-15 23:33:16 +02:00
try {} catch(e) { }
>e : any
2014-08-15 23:33:16 +02:00
try {} catch(e) { }
>e : any
2014-08-15 23:33:16 +02:00
}