blob: efd5224bc434ca2616aa479e3662d7690f7cf0f0 [file] [log] [blame]
//5, 18 -> 5, 18 replaceAll == true, removeDeclaration == true
package p;
@interface Annot {
String value();
}
@Annot("Paul")
class Test {
@Annot(value="Paul")
String m(Annot a) {
return "Paul";
}
}