TypeScript/tests/baselines/reference/implementPublicPropertyAsPrivate.js
2014-07-12 17:30:19 -07:00

16 lines
296 B
JavaScript

//// [implementPublicPropertyAsPrivate.ts]
interface I {
x: number;
}
class C implements I {
private x = 0; // should raise error at class decl
}
//// [implementPublicPropertyAsPrivate.js]
var C = (function () {
function C() {
this.x = 0;
}
return C;
})();