mcimadamore@42: /* jjg@384: * @test /nodynamiccopyright/ mcimadamore@42: * @bug 6677785 mcimadamore@42: * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors mcimadamore@42: * @author Maurizio Cimadamore mcimadamore@42: * @compile/fail/ref=T6677785.out -XDstdout -XDrawDiagnostics T6677785.java mcimadamore@42: */ mcimadamore@42: public class T6677785 { mcimadamore@42: T6677785() {} mcimadamore@42: T6677785(E e) {} mcimadamore@42: T6677785(E e, T t) {} mcimadamore@42: }