TypeScript/tests/baselines/reference/ParameterList6.js

13 lines
197 B
TypeScript

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