2023-01-17 04:43:40 +00:00

15 lines
335 B
Java

/*
* @test /nodynamiccopyright/
* @bug 5081782
* @summary type arguments to non-generic methods
* @author Peter von der Ah\u00e9
* @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();
}
}