/* * @test /nodynamiccopyright/ * @bug 6638712 6795689 * @author mcimadamore * @summary Inference with wildcard types causes selection of inapplicable method * @compile/fail/ref=T6638712e.out -XDrawDiagnostics T6638712e.java */ class T6638712e { static class Foo { Foo m(Foo foo) { return null;} } static class Test { Foo test(Foo foo1, Foo foo2) { return foo1.m(foo2); } } }