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

14 lines
216 B
TypeScript

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