mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
14 lines
213 B
Java
14 lines
213 B
Java
// "Replace lambda with method reference" "true-preview"
|
|
class Example {
|
|
{
|
|
long[][] avg = collect(long[][]::new);
|
|
}
|
|
|
|
interface P<T> {
|
|
T _(int i);
|
|
}
|
|
|
|
<T> T collect(P<T> p) {
|
|
return null;
|
|
}
|
|
} |