Files
Bas Leijdekkers 9e54c0017f Java: create final local variable when configured (IDEA-366908)
for the "Convert to local" quick-fix of the "Field can be local" inspection

GitOrigin-RevId: f82f38ca4c6eda299519eef80e6a90aa8d4b2f68
2025-02-03 20:43:02 +00:00

9 lines
179 B
Java

// "Convert field to local variable in initializer section" "true-preview"
class TestInitializer {
{
final boolean field = true;
System.out.println(field);
}
}