mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
b0929155eb
GitOrigin-RevId: 232800df8754a17bc8358640b675bc5a8903dfce
9 lines
256 B
Java
9 lines
256 B
Java
// "Replace lambda with method reference" "true"
|
|
import java.util.function.Function;
|
|
|
|
class Example {
|
|
public static void main(String[] args) {
|
|
Function<String, Example> f1 = a -> new<caret> Example(a);
|
|
}
|
|
public Example(String a, String... b) {}
|
|
} |