mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
11 lines
214 B
Java
11 lines
214 B
Java
// "Defer assignment to 'i' using temp variable" "true-preview"
|
|
class a {
|
|
{
|
|
final int i;
|
|
int i1;
|
|
if (true) i1 = 0;
|
|
if (true) i1 = 0;
|
|
i = i1;
|
|
{if (false);}
|
|
}
|
|
} |