TypeScript/tests/baselines/reference/privateStaticNotAccessibleInClodule.errors.txt
2014-07-12 17:30:19 -07:00

13 lines
488 B
Plaintext

==== tests/cases/conformance/classes/members/accessibility/privateStaticNotAccessibleInClodule.ts (1 errors) ====
// Any attempt to access a private property member outside the class body that contains its declaration results in a compile-time error.
class C {
private foo: string;
private static bar: string;
}
module C {
export var y = C.bar; // error
~~~~~
!!! Property 'C.bar' is inaccessible.
}