IDEA-163986 Code complete second default array argument in annotation

This commit is contained in:
peter
2017-05-09 14:37:54 +02:00
parent c7d41b6576
commit 2461a8751c
4 changed files with 70 additions and 0 deletions
@@ -0,0 +1,4 @@
public @interface Category {
Class<?>[] value();
}
@Category({Foo.class,<caret>})
@@ -0,0 +1,4 @@
public @interface Category {
Class<?>[] value();
}
@Category(Foo.class<caret>)