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