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 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 { } |