mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
11 lines
193 B
Java
11 lines
193 B
Java
class Test{
|
|
|
|
public void t() {
|
|
I i1 = (Integer <warning descr="Parameter 'i' can have 'final' modifier">i</warning>) -> {};
|
|
I i2 = i -> {};
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
void f(Integer i);
|
|
} |