TypeScript/tests/baselines/reference/ParameterList6.js
2014-07-12 17:30:19 -07:00

13 lines
183 B
TypeScript

//// [ParameterList6.ts]
class C {
constructor(C: (public A) => any) {
}
}
//// [ParameterList6.js]
var C = (function () {
function C(C) {
}
return C;
})();