basic completion of class keyword after primitive types and arrays (IDEA-72265)

This commit is contained in:
peter
2011-09-09 12:18:56 +02:00
parent 13daca8425
commit 22a6e37301
6 changed files with 36 additions and 7 deletions
@@ -0,0 +1,5 @@
private class Zooooooo {
{
Class<?> cls = byte[].cla<caret>
}
}
@@ -0,0 +1,5 @@
private class Zooooooo {
{
Class<?> cls = byte[].class<caret>
}
}
@@ -0,0 +1,5 @@
private class Zooooooo {
{
Class<?> cls = byte.cla<caret>
}
}
@@ -0,0 +1,5 @@
private class Zooooooo {
{
Class<?> cls = byte.class<caret>
}
}