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

19 lines
261 B
Plaintext

=== tests/cases/compiler/commentEmitAtEndOfFile1.ts ===
// test
var f = ''
>f : string
>'' : string
// test #2
module foo {
>foo : typeof foo
function bar() { }
>bar : () => void
}
// test #3
module empty {
>empty : any
}
// test #4