// "Replace method call on method reference with corresponding method call" "true-preview" import java.util.function.Supplier; class Test { String s = ((Supplier) this::foo).get(); private String foo() { return null; } }