TypeScript/tests/baselines/reference/Protected3.js

12 lines
162 B
TypeScript

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