TypeScript/tests/baselines/reference/Protected1.js
2015-12-08 17:51:10 -08:00

11 lines
142 B
TypeScript

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