// Inaccessible types in local variable declarations.
// These exercise 'FieldExpression.checkCommon'.
//
// Fields 'P3' and 'P5' are inaccessible.
P1 foo = null;
P1.P3 bar = null; // ERROR
P1.P3.P4 baz = null; // ERROR
P1.P3.P4.P5 quux = null; // ERROR
}