push down: erase type arguments for raw subtypes (IDEA-53405)

This commit is contained in:
anna
2010-03-30 21:00:36 +04:00
parent 7e5a1be9f8
commit 9cb223e375
4 changed files with 19 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
public class Parent<T> {
void <caret>foo(T t){}
}
class Child extends Parent {}

View File

@@ -0,0 +1,6 @@
public class Parent<T> {
}
class Child extends Parent {
void foo(Object t){}
}