TypeScript/tests/baselines/reference/stradac.types
2014-08-15 14:37:48 -07:00

19 lines
218 B
Plaintext

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