mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-175677 Duplicate generic method suggestion when inheriting from a raw type
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
interface I {
|
||||
int indexOf(Enum<?> e);
|
||||
}
|
||||
abstract class C<T> implements I {
|
||||
@Override
|
||||
public int indexOf(Enum<?> e) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class C2 extends C {
|
||||
{
|
||||
inde<caret>x
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user