mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
nothing but .class after primitive or array types in basic completion (IDEA-72265)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
private class Zooooooo {
|
||||
@interface B {
|
||||
Class<?> value();
|
||||
}
|
||||
|
||||
@B(byte[].c<caret>)
|
||||
public static void main(String[] args) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
private class Zooooooo {
|
||||
@interface B {
|
||||
Class<?> value();
|
||||
}
|
||||
|
||||
@B(byte[].class<caret>)
|
||||
public static void main(String[] args) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
private class Zooooooo {
|
||||
{
|
||||
Class<?> cls = byte[].Cla<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user