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

14 lines
298 B
TypeScript
Raw Normal View History

// 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;
}
class D extends C {
baz: number;
}
module D {
export var y = D.bar; // error
}