blob: 4f5c441ad8a36d962fa9f40e5957bc2c7aedb5d8 [file] [log] [blame]
// Test case for Issue 913
// https://github.com/typetools/checker-framework/issues/913
public class Issue913 {
void test(Ordering<Object> o) {
Multimap<Long> newMap = create(o);
}
static <V> Multimap<V> create(Ordering<? super V> valueComparator) {
throw new RuntimeException();
}
interface Multimap<V> {}
class Ordering<T> {}
}