TypeScript/tests/baselines/reference/constructorArgsErrors1.js

13 lines
208 B
TypeScript

//// [constructorArgsErrors1.ts]
class foo {
constructor (static a: number) {
}
}
//// [constructorArgsErrors1.js]
var foo = (function () {
function foo(a) {
}
return foo;
})();