TypeScript/tests/baselines/reference/parser642331_1.js

16 lines
212 B
JavaScript

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