2025-05-14 06:42:07 +00:00

15 lines
331 B
Java

/*
* @test /nodynamiccopyright/
* @bug 5081782
* @summary type arguments to non-generic methods
* @author Peter von der Ahé
* @compile/fail/ref=Neg.out -XDrawDiagnostics Neg.java
*/
public class Neg {
static void m() {}
public static void meth() {
Neg.<Can,I,write,a,little,story,here>m();
}
}