author | bobv |
Tue, 07 Nov 2017 10:30:53 -0500 | |
changeset 47801 | c7b50c23ea71 |
parent 47216 | 71c04702a3d5 |
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 { } |