mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
12 lines
143 B
Java
12 lines
143 B
Java
// "Move assignment to field declaration" "true"
|
|
|
|
class X {
|
|
int f = 9;
|
|
X() {
|
|
}
|
|
void x() {
|
|
int i = f;
|
|
}
|
|
void x2() {
|
|
<caret>}
|
|
} |