// "Replace method call on lambda with lambda body" "true-preview" import java.util.function.Predicate; public class Test { public static void main(String[] args) { while(((Predicate) ((x) -> { System.out.println("hello"); return Collections.singleton("abc").contains(x); })).test("ab")) { System.out.println("hello"); } } }