mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
push down: erase type arguments for raw subtypes (IDEA-53405)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public class Parent<T> {
|
||||
void <caret>foo(T t){}
|
||||
}
|
||||
|
||||
class Child extends Parent {}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Parent<T> {
|
||||
}
|
||||
|
||||
class Child extends Parent {
|
||||
void foo(Object t){}
|
||||
}
|
||||
Reference in New Issue
Block a user