Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/addMissingRequiredAnnotationParameters/beforeSingleParameter.java
Dmitry Batkovich 80a7f69972 IDEA-25183
2014-05-28 17:46:34 +04:00

13 lines
163 B
Java

// "Add missing annotation parameter 'value'" "true"
class Test {
@MyAnnotati<caret>on
void m() {
}
@interface MyAnnotation {
String value();
}
}