TypeScript/tests/baselines/reference/commentEmitAtEndOfFile1.types

19 lines
261 B
Plaintext
Raw Normal View History

=== tests/cases/compiler/commentEmitAtEndOfFile1.ts ===
// test
var f = ''
>f : string
2015-04-13 21:36:11 +02:00
>'' : string
// test #2
module foo {
>foo : typeof foo
function bar() { }
>bar : () => void
}
// test #3
module empty {
>empty : any
}
// test #4