author | lana |
Thu, 21 Jan 2016 09:46:01 -0800 | |
changeset 35340 | 38f7386ed942 |
parent 26528 | a1a7ad15183e |
permissions | -rw-r--r-- |
10 | 1 |
/* |
26528
a1a7ad15183e
8055075: Group 9b: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 4402884 |
4 |
* @summary javac improperly extends superclass's scope to implements clause |
|
5 |
* @author gafter |
|
6 |
* |
|
7 |
* @clean I |
|
26528
a1a7ad15183e
8055075: Group 9b: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
8 |
* @compile/fail/ref=ExtendsScope.out -XDrawDiagnostics ExtendsScope.java |
10 | 9 |
*/ |
10 |
||
11 |
class P { |
|
12 |
interface I {} |
|
13 |
} |
|
14 |
||
15 |
class T extends P implements I { // error: no I in scope |
|
16 |
} |