mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
11 lines
192 B
Java
11 lines
192 B
Java
// "Convert field to local variable in initializer section" "true-preview"
|
|
class TestInitializer {
|
|
|
|
private boolean fie<caret>ld;
|
|
|
|
{
|
|
field = true;
|
|
System.out.println(field);
|
|
}
|
|
|
|
} |