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

13 lines
209 B
TypeScript

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