blob: 15862bc3f427099709ab1d4b074046f38d688f63 [file] [log] [blame]
// "Add missing annotation parameter 'value'" "false"
class Test {
@MyAnnotati<caret>on
void m() {
}
@interface MyAnnotation {
String value() default "";
}
}