mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
IDEA-202665 added tests for super method resolve order
This commit is contained in:
committed by
Artemiy Sartakov
parent
c4eda30c9f
commit
9e06553bf2
@@ -0,0 +1,20 @@
|
||||
public interface Test<E> {
|
||||
|
||||
boolean remove(Object o);
|
||||
|
||||
/** @see TestImpl#remove(int) */
|
||||
E remove<caret>(int idx);
|
||||
}
|
||||
|
||||
public class TestImpl<E> implements Test<E> {
|
||||
|
||||
@Override
|
||||
public boolean remove(Object o) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public E remove(int idx) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user