41N/A/*
383N/A * @test /nodynamiccopyright/
41N/A * @bug 6677785
41N/A * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors
41N/A * @author Maurizio Cimadamore
610N/A * @compile/fail/ref=T6677785.out -XDrawDiagnostics T6677785.java
41N/A */
41N/Apublic class T6677785<E extends T, T extends E> {
41N/A T6677785() {}
41N/A T6677785(E e) {}
41N/A T6677785(E e, T t) {}
41N/A}