/* * @test /nodynamiccopyright/ * @bug 8003280 * @summary Add lambda tests * check that diagnostics on nested erroneous deferred types are flushed * @compile/fail/ref=BadMethodCall.out -XDrawDiagnostics BadMethodCall.java */ import java.util.*; class BadMethodCall { List id(List z) { return null; }; List cons(String s, List ls) { return null; } void test(List lo) { Object t = cons(id(""),lo); } }