TypeScript/tests/baselines/reference/moduleCodegenTest4.types
2015-04-15 16:44:20 -07:00

18 lines
318 B
Plaintext

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