mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
7 lines
164 B
Java
7 lines
164 B
Java
class Test {
|
|
Runnable r = () -> {
|
|
int i = <warning descr="Variable 'i' initializer '0' is redundant">0</warning>;
|
|
i = 1;
|
|
System.out.println(i);
|
|
};
|
|
} |