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