TypeScript/tests/baselines/reference/invalidTypeNames.js
2014-07-12 17:30:19 -07:00

13 lines
274 B
JavaScript

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