langtools/test/tools/javac/annotations/typeAnnotations/failures/StaticMethods.java
changeset 21041 99f5e5e97425
parent 21040 3e32f68d2151
child 21042 2b4b55bc044d
--- a/langtools/test/tools/javac/annotations/typeAnnotations/failures/StaticMethods.java	Tue Oct 15 22:15:35 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-/*
- * @test /nodynamiccopyright/
- * @bug 6843077 8006775
- * @summary static methods don't have receivers
- * @author Mahmood Ali
- * @compile/fail/ref=StaticMethods.out -XDrawDiagnostics StaticMethods.java
- */
-class StaticMethods {
-  static void main(StaticMethods this) { }
-}
-
-@interface A { }