2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-10-01 21:15:40 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 6407257
|
|
|
|
* @summary javac locks up when encountering cyclic inheritance
|
|
|
|
* @author Peter von der Ah\u00e9
|
2014-10-01 21:15:40 +00:00
|
|
|
* @compile/fail/ref=T6407257.out -XDrawDiagnostics T6407257.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class T6407257a extends T6407257a {}
|
|
|
|
|
|
|
|
public class T6407257 extends T6407257a {
|
|
|
|
}
|