import java.util.function.Function; class LamAssign { Function m () { Function lam1 = (Integer x) -> { return x; }; return lam1; } }