blob: fc54bb6ca9d6c7bff00aeecdeb45b2bded29067a [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) {
myField = new ClassParent[][][]{{pfc}, {null}, null};
}
}