mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 19:29:30 +07:00
fix comparison level when checking type arguments applicability (IDEA-132063)
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
class ImmutableSet<E> {
|
||||
void foo(final ImmutableSet<Class<String>> of) {
|
||||
Object types = <error descr="Inconvertible types; cannot cast 'ImmutableSet<java.lang.Class<java.lang.String>>' to 'ImmutableSet<java.lang.Class<?>>'">(ImmutableSet<Class<?>>) of</error>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user