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

16 lines
222 B
TypeScript

//// [propertyAccessibility2.ts]
class C {
private static x = 1;
}
var c = C.x;
//// [propertyAccessibility2.js]
var C = (function () {
function C() {
}
C.x = 1;
return C;
})();
var c = C.x;