mcimadamore@93: /** jjg@384: * @test /nodynamiccopyright/ mcimadamore@93: * @bug 6718364 mcimadamore@93: * @summary inference fails when a generic method is invoked with raw arguments mcimadamore@93: * @compile/ref=T6718364.out -XDstdout -XDrawDiagnostics -Xlint:unchecked T6718364.java mcimadamore@93: */ mcimadamore@93: class T6718364 { mcimadamore@93: class X {} mcimadamore@93: mcimadamore@93: public void m(X x, T t) {} mcimadamore@93: mcimadamore@93: public void test() { mcimadamore@93: m(new X>(), new X()); mcimadamore@93: } mcimadamore@93: }