diff -r 4ee06c77b51b -r 7e97c65c373c test/tools/javac/annotations/typeAnnotations/newlocations/Receivers.java --- a/test/tools/javac/annotations/typeAnnotations/newlocations/Receivers.java Tue Jun 17 16:32:18 2014 -0600 +++ b/test/tools/javac/annotations/typeAnnotations/newlocations/Receivers.java Wed Jun 18 12:30:29 2014 -0400 @@ -54,14 +54,6 @@ void accept(@B("m") WithValue this, T r) throws Exception { } } -class WithFinal { - void plain(final @B("m") WithFinal this) { } - void generic(final @B("m") WithFinal this) { } - void withException(final @B("m") WithFinal this) throws Exception { } - String nonVoid(final @B("m") WithFinal this) { return null; } - void accept(final @B("m") WithFinal this, T r) throws Exception { } -} - class WithBody { Object f;