mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
14 lines
298 B
TypeScript
14 lines
298 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 {
|
|
private foo: string;
|
|
private static bar: string;
|
|
}
|
|
|
|
class D extends C {
|
|
baz: number;
|
|
}
|
|
|
|
module D {
|
|
export var y = D.bar; // error
|
|
} |