TypeScript/tests/baselines/reference/Protected1.js

11 lines
142 B
TypeScript

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