``` ts class B { private x; method() { class C { method() { new B().x; // x is not accessible here } } } } ```