mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 02:39:37 +07:00
13 lines
196 B
Java
13 lines
196 B
Java
// "Replace with lambda" "true"
|
|
class Test {
|
|
interface InOut {
|
|
void run() throws IOException;
|
|
static void foo(){}
|
|
}
|
|
|
|
InOut bind() {
|
|
return () -> {
|
|
InOut.foo();
|
|
};
|
|
}
|
|
} |