author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 28335 | 0b37a4232e35 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
28335
0b37a4232e35
8058373: Group 10a: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 4909690 |
4 |
* @summary AssertionError(com.sun.tools.javac.v8.code.Symbol$MethodSymbol.isOverridableIn) |
|
5 |
* @author gafter |
|
6 |
* |
|
28335
0b37a4232e35
8058373: Group 10a: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=B.out -XDrawDiagnostics B.java |
10 | 8 |
*/ |
9 |
||
10 |
public class B extends A |
|
11 |
{ |
|
12 |
private protected int m() { return 0; } |
|
13 |
} |