mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
13 lines
243 B
Java
13 lines
243 B
Java
class SideEffectReturn {
|
|
private void testLoop(String value) {
|
|
while(<warning descr="Condition 'Test.valueOf(value) == null' is always 'false'">Test.v<caret>alueOf(value) == null</warning>) {
|
|
|
|
}
|
|
}
|
|
|
|
enum Test {
|
|
A,
|
|
B
|
|
|
|
}
|
|
} |