class Test{ String main(){ return m(()->{return "Test";}); } String m(p){ return p.apply(); } void m(p){} }