summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/exprNewArrayReftype2Rvalue/before/Expr.java
blob: 9e973b7925a0248f0d7dec2c2c2f3fa4c01d34ca (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, ClassParent pcp, ClassChild pcc) {
		myField = new FaceChild[][]{{pfc}, {pcp}, {pcc}, {null}};
	}
}