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,3 @@
class Test {
Integer t;
}
@@ -0,0 +1,3 @@
class Test1 {
String t;
}
@@ -0,0 +1,3 @@
class Super<T> {
T t;
}
@@ -0,0 +1,2 @@
class Test extends Super<Integer>{
}
@@ -0,0 +1,2 @@
class Test1 extends Super<String>{
}