blob: 55fdfa3f9f2e354d676393efd325b9604dac2c33 [file] [log] [blame]
/*
* @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 { }