298N/A/*
383N/A * @test /nodynamiccopyright/
298N/A * @bug 6638712 6730468
298N/A * @author mcimadamore
298N/A * @summary Inference with wildcard types causes selection of inapplicable method
298N/A * @compile/fail/ref=T6638712d.out -XDrawDiagnostics T6638712d.java
298N/A */
298N/A
298N/Aimport java.util.*;
298N/A
298N/Apublic class T6638712d {
298N/A
298N/A <U> U m(U u, List<List<U>> list) { return null; }
298N/A
298N/A void test(List<List<String>> lls) {
298N/A m(1, lls);
298N/A }
298N/A}