mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: fd52ace3d7a32ecd02c2c5ab90e077967604c15e
11 lines
174 B
Java
11 lines
174 B
Java
/*
|
|
Value is always true (b; line#9)
|
|
'b' was assigned to 'true' (=; line#8)
|
|
*/
|
|
|
|
class Test {
|
|
void test() {
|
|
boolean b = true;
|
|
if(<selection>b</selection>) {}
|
|
}
|
|
} |