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

Thu, 27 Aug 2009 11:08:27 -0700

author
jjg
date
Thu, 27 Aug 2009 11:08:27 -0700
changeset 384
ed31953ca025
parent 42
f7e64b33d5a4
child 611
4172cfff05f0
permissions
-rw-r--r--

6875336: some tests should use /nodynamiccopyright/
Reviewed-by: darcy

mcimadamore@42 1 /*
jjg@384 2 * @test /nodynamiccopyright/
mcimadamore@42 3 * @bug 6677785
mcimadamore@42 4 * @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors
mcimadamore@42 5 * @author Maurizio Cimadamore
mcimadamore@42 6 * @compile/fail/ref=T6677785.out -XDstdout -XDrawDiagnostics T6677785.java
mcimadamore@42 7 */
mcimadamore@42 8 public class T6677785<E extends T, T extends E> {
mcimadamore@42 9 T6677785() {}
mcimadamore@42 10 T6677785(E e) {}
mcimadamore@42 11 T6677785(E e, T t) {}
mcimadamore@42 12 }

mercurial