summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/migrateTypeSignature/typeGenRaw2Rvalue/before/Type.java
blob: 968d7e85e0b7e056efe510bb40cdf842bc85f43a (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.Set;

class Any {}

class Type {
	private Set<Any> myField;
	public void meth(Set<Any> p) {
		myField = p;
	}
}