blob: de339c46183f539672408cc78cf6ce31c3ab5881 [file] [log] [blame]
//7, 36 -> 7, 36 replaceAll == true, removeDeclaration == false
package p;
@Annot(Annot.DEFAULT)
class Test {
@interface Annot {
public static final String DEFAULT= "John";
String value();
}
@Annot(Annot.DEFAULT)
int a;
@Annot(value=Annot.DEFAULT)
int b;
}
@Test.Annot(value=Test.Annot.DEFAULT)
enum Test2 {}