mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
pull up/push down: type parameters can be used in type parameters list as well as type elements (IDEA-57268)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class Test<T> {
|
||||
<S extends T> void f<caret>oo(){}
|
||||
}
|
||||
|
||||
class B extends Test<Throwable>{
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Test<T> {
|
||||
}
|
||||
|
||||
class B extends Test<Throwable>{
|
||||
<S extends Throwable> void foo(){}
|
||||
}
|
||||
Reference in New Issue
Block a user