author | peterz |
Fri, 28 May 2010 13:32:40 +0400 | |
changeset 5594 | 3db39773da2e |
parent 3766 | 7e2df99e9223 |
child 39812 | 6272642715a1 |
permissions | -rw-r--r-- |
/** * @test /nodynamiccopyright/ * @bug 6862608 * @summary rich diagnostic sometimes contain wrong type variable numbering * @author mcimadamore * @compile/fail/ref=T6862608b.out -XDrawDiagnostics -XDdiags=disambiguateTvars,where T6862608b.java */ class T66862608b<T extends String, S> { <S, T extends S> void foo(T t) { test(t); } void test(T t) {} }