TypeScript/tests/baselines/reference/invalidTypeNames.js

14 lines
340 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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
2014-07-13 01:04:16 +02:00
var illegal_name_here = (function () {
function illegal_name_here() {
}
return illegal_name_here;
})();