diff -r 843d3b191773 -r 01c9d4161882 test/tools/javac/defaultMethods/Neg13.java --- a/test/tools/javac/defaultMethods/Neg13.java Fri Nov 16 18:27:36 2012 +0000 +++ b/test/tools/javac/defaultMethods/Neg13.java Sat Nov 17 19:01:03 2012 +0000 @@ -1,7 +1,7 @@ /* * @test /nodynamiccopyright/ * @summary check that default method overriding object members are flagged as error - * @compile/fail/ref=Neg13.out -XDallowDefaultMethods -XDrawDiagnostics Neg13.java + * @compile/fail/ref=Neg13.out -XDrawDiagnostics Neg13.java */ interface Neg13 { default protected Object clone() { return null; } //protected not allowed here