mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
21 lines
297 B
Java
21 lines
297 B
Java
// "Replace with expression lambda" "false"
|
|
class IdeaSetterArgsShouldBeFinal {
|
|
|
|
interface I {
|
|
void m1();
|
|
}
|
|
|
|
interface J {
|
|
void m2();
|
|
}
|
|
|
|
<L> void foo(I i, J j1, J... j){}
|
|
<K> void foo(I o, I i1, I... i){}
|
|
|
|
{
|
|
foo(() -> {
|
|
System.ou<caret>t.println("");
|
|
});
|
|
}
|
|
|
|
} |