mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-24 08:41:46 +07:00
8560c6a5d1
GitOrigin-RevId: 571a82f66623887c1b5008963df842b2597c58c9
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);
|
|
}
|
|
|
|
} |