--- old/test/tools/javac/T6423583.java 2010-02-15 20:05:56.000000000 -0800 +++ new/test/tools/javac/T6423583.java 2010-02-15 20:05:56.000000000 -0800 @@ -37,7 +37,6 @@ import com.sun.source.util.*; @SupportedAnnotationTypes("*") -@SupportedSourceVersion(SourceVersion.RELEASE_6) public class T6423583 extends AbstractProcessor { boolean b1 = true; boolean b2 = false; @@ -59,6 +58,10 @@ return true; } + @Override + public SourceVersion getSupportedSourceVersion() { + return SourceVersion.latest(); + } private static class Test extends TreeScanner {