TypeScript/tests/baselines/reference/parserParameterList6.js

13 lines
195 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [parserParameterList6.ts]
class C {
constructor(C: (public A) => any) {
}
}
//// [parserParameterList6.js]
var C = (function () {
function C(C) {
}
return C;
})();