TypeScript/tests/baselines/reference/parser642331.js

12 lines
178 B
TypeScript

//// [parser642331.ts]
class test {
constructor (static) { }
}
//// [parser642331.js]
var test = (function () {
function test() {
}
return test;
})();