mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
pull up inference errors when current call has no type parameters (IDEA-169316)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
|
||||
class A<T> {}
|
||||
class B<K> extends A<String> {}
|
||||
|
||||
class X<L> {
|
||||
public X(A<L> b1) {
|
||||
this(new B<>());
|
||||
}
|
||||
|
||||
public X(B<L> b2) {}
|
||||
}
|
||||
Reference in New Issue
Block a user