blob: 3f7c8d61e6cd4eac580415e5117a34cb0dd01e2a [file] [log] [blame]
package test;
import java.util.Collection;
public class MethodWithWildcard<V> {
public Collection<V> method(Collection<? extends V> c) { return null; }
}