smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / ArrayAnnoParameter.java
blob690e5998c3ddb7a56e418dad572f151398931e28
1 public @interface A {
2 String[] value();
5 class WontComplete {
6 public static final String STRING = "aaaaa";
8 @A(<caret>{"x"})
9 int x;