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