TypeScript/tests/baselines/reference/commentEmitAtEndOfFile1.types

18 lines
251 B
Text
Raw Normal View History

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