/* * @test /nodynamiccopyright/ * @bug 8003280 8016177 * @summary Add lambda tests * check that wildcards in the target method of a lambda conversion is handled correctly * @author Maurizio Cimadamore * @compile TargetType10.java */ class TargetType10 { interface Function { R apply(A a); } static class Test { Function compose(Function g, Function f) { return null; } { compose(x -> "a" + x, x -> x + "b"); } } }