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

12 lines
226 B
Plaintext

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