mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
11 lines
295 B
TypeScript
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
|
|
} |