--- old/src/share/classes/com/sun/tools/javac/parser/JavacParser.java 2013-06-24 20:27:22.275126049 -0400 +++ new/src/share/classes/com/sun/tools/javac/parser/JavacParser.java 2013-06-24 20:27:21.754121755 -0400 @@ -2914,7 +2914,9 @@ pos = token.pos; accept(LBRACE); ListBuffer buf = new ListBuffer(); - if (token.kind != RBRACE) { + if (token.kind == COMMA) { + nextToken(); + } else if (token.kind != RBRACE) { buf.append(annotationValue()); while (token.kind == COMMA) { nextToken();