mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
IDEA-113149 Constructor parameters completion is not available in case of classes with generics
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class A<T> {
|
||||
public A(T i, String z, String zz) {}
|
||||
}
|
||||
class B extends A<String> {
|
||||
public B(String i, String zz, String z) {
|
||||
super(<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user