swc/crates/swc_ecma_parser/tests/tsc/protectedStaticNotAccessibleInClodule.ts

11 lines
295 B
TypeScript

// Any attempt to access a private property member outside the class body that contains its declaration results in a compile-time error.
class C {
public static foo: string;
protected static bar: string;
}
module C {
export var f = C.foo; // OK
export var b = C.bar; // error
}