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

15 lines
265 B
Plaintext

=== tests/cases/compiler/moduleCodegenTest4.ts ===
export module Baz { export var x = "hello"; }
>Baz : typeof Baz
>x : string
Baz.x = "goodbye";
>Baz.x = "goodbye" : string
>Baz.x : string
>Baz : typeof Baz
>x : string
void 0;
>void 0 : undefined