TypeScript/tests/baselines/reference/Protected1.js

11 lines
156 B
TypeScript

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