2008-05-30 10:08:40 +00:00
|
|
|
/*
|
2009-08-27 18:08:27 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2008-05-30 10:08:40 +00:00
|
|
|
* @bug 6677785
|
|
|
|
* @summary REGRESSION: StackOverFlowError with Cyclic Class level Type Parameters when used in constructors
|
|
|
|
* @author Maurizio Cimadamore
|
2010-07-26 21:18:45 +00:00
|
|
|
* @compile/fail/ref=T6677785.out -XDrawDiagnostics T6677785.java
|
2008-05-30 10:08:40 +00:00
|
|
|
*/
|
|
|
|
public class T6677785<E extends T, T extends E> {
|
|
|
|
T6677785() {}
|
|
|
|
T6677785(E e) {}
|
|
|
|
T6677785(E e, T t) {}
|
|
|
|
}
|