TypeScript/tests/baselines/reference/invalidTypeNames.js
2015-12-08 17:51:10 -08:00

14 lines
340 B
TypeScript

//// [invalidTypeNames.ts]
// Refer to calling code - a real illegal name is subbed in here
class illegal_name_here {
}
//// [invalidTypeNames.js]
// Refer to calling code - a real illegal name is subbed in here
var illegal_name_here = (function () {
function illegal_name_here() {
}
return illegal_name_here;
}());