pull up/push down: type parameters substitution should modify member copy (IDEA-53496)

This commit is contained in:
anna
2010-04-14 18:32:38 +04:00
parent 1d7db34dac
commit 04fdd69cc1
14 changed files with 86 additions and 20 deletions
@@ -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){}
}