TypeScript/tests/baselines/reference/Protected9.js
2014-09-19 17:58:41 -07:00

13 lines
186 B
TypeScript

//// [Protected9.ts]
class C {
constructor(protected p) { }
}
//// [Protected9.js]
var C = (function () {
function C(p) {
this.p = p;
}
return C;
})();