IDEA-175677 Duplicate generic method suggestion when inheriting from a raw type

This commit is contained in:
peter
2017-07-13 19:29:54 +02:00
parent f5ef431a80
commit fddf282e16
3 changed files with 27 additions and 2 deletions
@@ -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
}
}