TypeScript/tests/baselines/reference/moduleCodeGenTest3.types

14 lines
266 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/moduleCodeGenTest3.ts ===
module Baz { export var x = "hello"; }
>Baz : typeof Baz
>x : string
2015-04-13 21:36:11 +02:00
>"hello" : string
2014-08-15 23:33:16 +02:00
Baz.x = "goodbye";
>Baz.x = "goodbye" : string
>Baz.x : string
>Baz : typeof Baz
>x : string
2015-04-13 21:36:11 +02:00
>"goodbye" : string
2014-08-15 23:33:16 +02:00