mcimadamore@342: /** jjg@384: * @test /nodynamiccopyright/ mcimadamore@342: * @bug 6862608 mcimadamore@342: * @summary rich diagnostic sometimes contain wrong type variable numbering mcimadamore@342: * @author mcimadamore mcimadamore@342: * @compile/fail/ref=T6862608b.out -XDrawDiagnostics -XDdiags=disambiguateTvars,where T6862608b.java mcimadamore@342: */ mcimadamore@342: mcimadamore@342: class T66862608b { mcimadamore@342: void foo(T t) { mcimadamore@342: test(t); mcimadamore@342: } mcimadamore@342: mcimadamore@342: void test(T t) {} mcimadamore@342: }