import java.util.function.Supplier; class Test { private void a() { b((s) -> { System.out.println(s); }); } void b(Supplier s) {} }