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

16 lines
218 B
TypeScript

//// [parser642331_1.ts]
"use strict";
class test {
constructor (static) { }
}
//// [parser642331_1.js]
"use strict";
var test = (function () {
function test(static) {
}
return test;
})();