nothing but .class after primitive or array types in basic completion (IDEA-72265)

This commit is contained in:
peter
2011-09-13 17:06:51 +02:00
parent c3372a3de5
commit 9ddcf4fde8
7 changed files with 73 additions and 11 deletions
@@ -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>
}
}