mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
178 B
Java
12 lines
178 B
Java
import java.util.function.Supplier;
|
|
class Test {
|
|
|
|
private void a()
|
|
{
|
|
b(<selection>(s) -> {
|
|
System.out.println(s);
|
|
}</selection>);
|
|
}
|
|
|
|
void b(Supplier s) {}
|
|
} |