2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-17 11:14:39 -07:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 5081782
|
|
|
|
* @summary type arguments to non-generic methods
|
|
|
|
* @author Peter von der Ah\u00e9
|
2014-07-17 11:14:39 -07:00
|
|
|
* @compile/fail/ref=Neg.out -XDrawDiagnostics Neg.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class Neg {
|
|
|
|
static void m() {}
|
|
|
|
public static void main(String... args) {
|
|
|
|
Neg.<Can,I,write,a,little,story,here>m();
|
|
|
|
}
|
|
|
|
}
|