summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typePrimsubInt2Rvalue/after/Type.java
blob: c13b0ab9bee2a11193643201f22fc4c51f4591e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Type {
	private int myField;
	public void meth(byte pb, short ps, char pc, int pi, int pl, int pf, int pd) {
		myField = pb;
		myField = ps;
		myField = pc;
		myField = pi;
		myField = pl;
		myField = pf;
		myField = pd;
	}
}