TypeScript/tests/baselines/reference/ParameterList6.js
2015-12-08 17:51:10 -08: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;
}());