2008-03-04 15:45:20 +00:00
|
|
|
/*
|
2014-10-01 21:15:40 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2008-03-04 15:45:20 +00:00
|
|
|
* @bug 6663588
|
|
|
|
* @summary Compiler goes into infinite loop for Cyclic Inheritance test case
|
|
|
|
* @author Maurizio Cimadamore
|
2014-10-01 21:15:40 +00:00
|
|
|
* @compile/fail/ref=T6663588.out -XDrawDiagnostics T6663588.java
|
2008-03-04 15:45:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
public class T6663588<T extends T6663588.Inner> extends T6663588 {
|
|
|
|
class Inner extends T6663588.Inner {}
|
|
|
|
}
|