summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/migrateTypeSignature/exprNewArrayArray2Rvalue/before/Expr.java
blob: 8c4093e44d7550fc9001064573132e5e3fa4c883 (plain)
1
2
3
4
5
6
7
8
9
10
11
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};
	}
}