summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/migrateTypeSignature/typeAutoboxInt2Lvalue/before/Type.java
blob: 9c2f74c3f26f0e8d670b41444a538796f1737a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Type {
	private int myField;
	private long myFieldSuper1;
	private Number myFieldSuper2;
	private Object myFieldSuper3;
	public void meth(int p) {
		myField = p;
		myFieldSuper1 = p;
		myFieldSuper2 = p;
		myFieldSuper3 = p;
	}
}