mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
java smart completion: don't suggest generic call variants with inapplicable types
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class A {
|
||||
{
|
||||
Func2<String,String> f = ge<caret>x
|
||||
}
|
||||
|
||||
<T,V> Func1<T,V> get1() {}
|
||||
<T,V> Func2<T,V> get2() {}
|
||||
|
||||
}
|
||||
|
||||
|
||||
interface Func1<T, V> {}
|
||||
interface Func2<T, V> {}
|
||||
Reference in New Issue
Block a user