author | hannesw |
Tue, 22 Mar 2016 14:23:16 +0100 | |
changeset 36690 | 06b714373aa4 |
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 4041948 |
4 |
* @summary javac previously allowed interfaces to inherit methods with |
|
5 |
* inconsistent signatures. |
|
6 |
* @author turnidge |
|
7 |
* |
|
26528
a1a7ad15183e
8055075: Group 9b: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
8 |
* @compile/fail/ref=InconsistentInheritedSignature.out -XDrawDiagnostics InconsistentInheritedSignature.java |
10 | 9 |
*/ |
10 |
interface I1{ |
|
11 |
int f(); |
|
12 |
} |
|
13 |
interface I2 { |
|
14 |
void f() ; |
|
15 |
} |
|
16 |
// error: Return types conflict. |
|
17 |
interface InconsistentInheritedSignature extends I1,I2 { } |