mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
9 lines
187 B
Java
9 lines
187 B
Java
// "Defer assignment to 'i' using temp variable" "true-preview"
|
|
class a {
|
|
{
|
|
final int i;
|
|
if (true) i = 0;
|
|
if (true) <caret>i = 0;
|
|
{if (false);}
|
|
}
|
|
} |