TypeScript/tests/baselines/reference/constructorArgsErrors1.js
2016-04-12 16:25:19 -07:00

13 lines
215 B
TypeScript

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