class NoLambda { interface I { void f(T t); } void bar(I iz) { } void bazz() { bar(null); bar((z)-> {System.out.println();}); } static T id(T i2) {return i2;} { id(() -> {System.out.println("hi");}); NoLambda.id(() -> {System.out.println("hi");}); } }