mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 00:40:00 +07:00
dd689d3a39
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
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);}
|
|
}
|
|
} |