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

13 lines
158 B
Java

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