5324b04fde
Reviewed-by: jjg
15 lines
349 B
Java
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();
|
|
}
|
|
}
|