author | duke |
Wed, 05 Jul 2017 23:01:50 +0200 | |
changeset 44228 | e46434c65a2b |
parent 26901 | 2c11dc81a5c8 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
26901
2c11dc81a5c8
8055783: Group 9e: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 6407257 |
4 |
* @summary javac locks up when encountering cyclic inheritance |
|
5 |
* @author Peter von der Ah\u00e9 |
|
26901
2c11dc81a5c8
8055783: Group 9e: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
6 |
* @compile/fail/ref=T6407257.out -XDrawDiagnostics T6407257.java |
10 | 7 |
*/ |
8 |
||
9 |
class T6407257a extends T6407257a {} |
|
10 |
||
11 |
public class T6407257 extends T6407257a { |
|
12 |
public static void main(String... args) { |
|
13 |
main(args); |
|
14 |
} |
|
15 |
} |