author | dfuchs |
Wed, 09 Oct 2019 17:38:58 +0100 | |
changeset 58518 | 705c3f88a409 |
parent 49518 | d0ff431a596e |
permissions | -rw-r--r-- |
3540
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
1 |
/** |
3766 | 2 |
* @test /nodynamiccopyright/ |
3540
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
3 |
* @bug 6862608 |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
4 |
* @summary rich diagnostic sometimes contain wrong type variable numbering |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
5 |
* @author mcimadamore |
49518
d0ff431a596e
8198314: javac hidden options violate standard syntax for options
vromero
parents:
47216
diff
changeset
|
6 |
* @compile/fail/ref=T6862608a.out -XDrawDiagnostics --diags=formatterOptions=disambiguateTvars,where T6862608a.java |
3540
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
7 |
*/ |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
8 |
|
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
9 |
|
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
10 |
import java.util.*; |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
11 |
|
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
12 |
class T6862608a { |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
13 |
|
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
14 |
<T> Comparator<T> compound(Iterable<? extends Comparator<? super T>> it) { |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
15 |
return null; |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
16 |
} |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
17 |
|
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
18 |
public void test(List<Comparator<?>> x) { |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
19 |
Comparator<String> c3 = compound(x); |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
20 |
} |
dceac8629a56
6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff
changeset
|
21 |
} |