/** * @test /nodynamiccopyright/ * @bug 6862608 * @summary rich diagnostic sometimes contain wrong type variable numbering * @author mcimadamore * @compile/fail/ref=T6862608a.out -XDrawDiagnostics -XDdiags=disambiguateTvars,where T6862608a.java */ import java.util.*; class T6862608a { Comparator compound(Iterable> it) { return null; } public void test(List> x) { Comparator c3 = compound(x); } }