blob: 650114b06e50509c7745964516ed043f5cb66f59 [file] [log] [blame]
import java.util.Collection;
import java.util.List;
class Test {
{
Matcher<? super List<String>> m = not(empty());
}
static <E> Matcher<Collection<E>> empty() {
return null;
}
static <T> Matcher<T> not(Matcher<T> matcher) {
return null;
}
static <T> Matcher<T> not(T value) {
return null;
}
static class Matcher<K> {}
}