blob: f78a0b3d5a68ee1e5363347818fdc2491bec1bfd [file] [log] [blame]
import java.util.Set;
class Any {}
class Type {
private Set myField;
public void meth(Set<Any> p) {
myField = p;
}
}