blob: 6167c3873f85ab7e3e51db87a6785c649364d39d [file] [log] [blame]
// "Surround annotation parameter value with quotes" "true"
class X {
@interface MyAnnotation {
String value();
}
@MyAnnotation(value= "\n")
void m() {
}
}