mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
13 lines
166 B
Java
13 lines
166 B
Java
|
|
import java.util.function.Supplier;
|
|
|
|
public class Test {
|
|
|
|
{
|
|
Supplier<String> sup = new Test()::get;
|
|
}
|
|
|
|
private String ge<caret>t() {
|
|
return null;
|
|
}
|
|
} |