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

14 lines
266 B
Plaintext

=== tests/cases/compiler/moduleCodeGenTest3.ts ===
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