2014-07-17 11:14:39 -07:00

15 lines
349 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 main(String... args) {
Neg.<Can,I,write,a,little,story,here>m();
}
}