mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
11 lines
113 B
Java
11 lines
113 B
Java
// "Replace with lambda" "true"
|
|
class Test2 {
|
|
|
|
void f(Runnable... rs){}
|
|
{
|
|
f(null, () -> {
|
|
|
|
});
|
|
}
|
|
}
|