769N/A/*
769N/A * @test /nodynamiccopyright/
769N/A * @bug 7002837
769N/A *
769N/A * @summary Diamond: javac generates diamond inference errors when in 'finder' mode
769N/A * @author mcimadamore
769N/A * @compile -Werror -XDfindDiamond T7002837.java
769N/A *
769N/A */
769N/A
769N/Aclass T7002837<X extends java.io.Serializable & Comparable<?>> {
769N/A T7002837() {}
769N/A { new T7002837<Integer>(); }
769N/A}