TypeScript/tests/baselines/reference/stradac.types
2016-09-01 14:25:44 -07:00

20 lines
228 B
Plaintext

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