summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typePrimsubInt2Lvalue/after/Type.java
blob: b15830da724d2326ea22e5a60a04ddc5830ab3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Type {
	private int myByte;
	private int myShort;
	private int myChar;
	private int myInt;
	private long myLong;
	private float myFloat;
	private double myDouble;
	public void meth(int p) {
		myByte = p;
		myShort = p;
		myChar = p;
		myInt = p;
		myLong = p;
		myFloat = p;
		myDouble = p;
	}
}