mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
A class may not at the same time be a subtype of two interface types which are different parameterizations of the same generic interface(IDEA-122475); revert workarounds for javac 6 bug
This commit is contained in:
+1
-1
@@ -7,7 +7,7 @@ interface A<T>
|
||||
|
||||
interface B<T> extends A<T[]> { }
|
||||
|
||||
class C<T extends A<Object[]> & B<?>>
|
||||
class C<T extends A<Object[]> & B<Object>>
|
||||
{
|
||||
void foo(T x)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user