mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
collect completion stats even if a primitive type is expected (IDEA-92045)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
class AbstractSet<T> {
|
||||
public boolean contains(T t) {}
|
||||
}
|
||||
|
||||
class MySet<T> extends AbstractSet<T> {
|
||||
public boolean containsAll(Collection<?> c) {}
|
||||
}
|
||||
|
||||
public class Foo {
|
||||
MySet<String> set;
|
||||
void foo() {
|
||||
if (set.<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user