mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
assignment fix for super wildcards (IDEA-125031)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import java.util.Set;
|
||||
|
||||
class Test {
|
||||
|
||||
public static void test(Set foo, Matcher<Iterable<String>> matcher) {
|
||||
assertThat<error descr="'assertThat(Test.Matcher<? super java.util.Set>, java.util.Set)' in 'Test' cannot be applied to '(Test.Matcher<java.lang.Iterable<java.lang.String>>, java.util.Set)'">(matcher, foo)</error>;
|
||||
|
||||
Matcher<Iterable<String>> b = null;
|
||||
<error descr="Incompatible types. Found: 'Test.Matcher<java.lang.Iterable<java.lang.String>>', required: 'Test.Matcher<? super java.util.Set>'">Matcher<? super Set> a = b;</error>
|
||||
}
|
||||
|
||||
public static <T> void assertThat(Matcher<? super T> matcher, T actual) {}
|
||||
|
||||
static class Matcher<K> {}
|
||||
}
|
||||
Reference in New Issue
Block a user