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

20 lines
232 B
Plaintext

=== tests/cases/compiler/stradac.ts ===
var x = 10;
>x : number
>10 : number
// C++-style comment
/*
C-Style comment
*/
function foo() {
>foo : () => void
x++;
>x++ : number
>x : number
}