mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
pull up/push down: type parameters substitution should modify member copy (IDEA-53496)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
public class Parent<S> {}
|
||||
|
||||
interface I<IT> {
|
||||
void method(IT t);
|
||||
}
|
||||
|
||||
class Child<T> extends Parent<T> implements I<T>{
|
||||
<caret>
|
||||
public void method(T t){}
|
||||
}
|
||||
Reference in New Issue
Block a user