eb3798a14a
Add missing bug id to modified tests Reviewed-by: jlahoda
15 lines
384 B
Java
15 lines
384 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7002837 8064365
|
|
*
|
|
* @summary Diamond: javac generates diamond inference errors when in 'finder' mode
|
|
* @author mcimadamore
|
|
* @compile/fail/ref=T7002837.out -Werror -XDrawDiagnostics -XDfind=diamond T7002837.java
|
|
*
|
|
*/
|
|
|
|
class T7002837<X extends java.io.Serializable & Comparable<?>> {
|
|
T7002837() {}
|
|
{ new T7002837<Integer>(); }
|
|
}
|