TypeScript/tests/baselines/reference/moduleWithTryStatement1.types

15 lines
177 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/moduleWithTryStatement1.ts ===
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
try {
}
catch (e) {
>e : any
2014-08-15 23:33:16 +02:00
}
}
var v = M;
>v : typeof M
>M : typeof M
2014-08-15 23:33:16 +02:00