mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
IDEA-115368 Smart type completion popup offers Object.class ahead of local Class<?> variable
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class Foo {
|
||||
|
||||
static void bar(Class<?> type) {
|
||||
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
Class<?> type;
|
||||
bar(<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user