TypeScript/tests/baselines/reference/parser642331.js
2015-04-08 22:06:55 -07:00

13 lines
184 B
TypeScript

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