// "Replace method call on lambda with lambda body" "true-preview" import java.util.function.Supplier; class Test { String str = ((Supplier) () -> { String s = ""; return s; }).get(); }