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

13 lines
184 B
TypeScript

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