blob: 8962df8791b11faad685455bc68f789124e5b9f2 [file] [log] [blame]
package com.red;
public class C extends B {
protected void add(B nodeGrid) {
nodeGrid.getHeader().foo(); // no error here since we are checking getHeader() method accessibility rather than Header class
}
}