TypeScript/tests/baselines/reference/stradac.js

24 lines
243 B
JavaScript

//// [stradac.ts]
var x = 10;
// C++-style comment
/*
C-Style comment
*/
function foo() {
x++;
}
//// [stradac.js]
var x = 10;
// C++-style comment
/*
C-Style comment
*/
function foo() {
x++;
}