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

15 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;