TypeScript/tests/baselines/reference/moduleCodeGenTest3.types
2016-09-01 14:25:44 -07:00

14 lines
273 B
Plaintext

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