// "Replace lambda with method reference" "true-preview" import java.util.function.BiFunction; class Example { public static void main(String[] args) { BiFunction f3 = Example::new; } public Example(String a, String... b) {} }