blob: f2d53b50f272a5ab5804e87dc65b2dcb21e7ee89 [file] [log] [blame]
interface FaceParent {}
interface FaceChild extends FaceParent {}
class ClassParent implements FaceChild {}
class ClassChild extends ClassParent {}
class Expr {
private ClassParent[][] myField;
public void meth(ClassParent pfc, ClassParent pcp, ClassChild pcc) {
myField = new ClassParent[][]{{pfc}, {pcp}, {pcc}, {null}};
}
}