test/tools/javac/generics/6677785/T6677785.java

changeset 611
4172cfff05f0
parent 384
ed31953ca025
child 2525
2eb010b6cb22
equal deleted inserted replaced
610:3640b60bd0f6 611:4172cfff05f0
1 /* 1 /*
2 * @test /nodynamiccopyright/ 2 * @test /nodynamiccopyright/
3 * @bug 6677785 3 * @bug 6677785
4 * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors 4 * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors
5 * @author Maurizio Cimadamore 5 * @author Maurizio Cimadamore
6 * @compile/fail/ref=T6677785.out -XDstdout -XDrawDiagnostics T6677785.java 6 * @compile/fail/ref=T6677785.out -XDrawDiagnostics T6677785.java
7 */ 7 */
8 public class T6677785<E extends T, T extends E> { 8 public class T6677785<E extends T, T extends E> {
9 T6677785() {} 9 T6677785() {}
10 T6677785(E e) {} 10 T6677785(E e) {}
11 T6677785(E e, T t) {} 11 T6677785(E e, T t) {}

mercurial