blob: 14f71e51a151b28586cf6740b3e304e8d36e98e3 [file] [log] [blame]
// "Add missing annotation parameter 'value'" "true"
class Test {
@MyAnnotation()
void m() {
}
@interface MyAnnotation {
String value();
}
}