diff -r af18e3956985 -r fe17a9dbef03 test/tools/javac/T6423583.java --- a/test/tools/javac/T6423583.java Mon Feb 15 18:20:57 2010 -0800 +++ b/test/tools/javac/T6423583.java Mon Feb 15 20:06:11 2010 -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 {