test/langtools/tools/javac/Diagnostics/6862608/T6862608a.java
author dfuchs
Wed, 09 Oct 2019 17:38:58 +0100
changeset 58518 705c3f88a409
parent 49518 d0ff431a596e
permissions -rw-r--r--
8231260: (dc) DatagramChannel::disconnect changes the port of the local address to 0 (lnx) Summary: DatagramChannel::disconnect will attempt to rebind to the original port if the local port switches back to 0 after the association is disolved by the system. Reviewed-by: alanb, chegar, fweimer
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3540
dceac8629a56 6862608: rich diagnostic sometimes contain wrong type variable numbering
mcimadamore
parents:
diff changeset
     1
/**
3766
7e2df99e9223 6875336: some tests should use /nodynamiccopyright/
jjg
parents: 3540
diff changeset
     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
}