mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
16 lines
188 B
Java
16 lines
188 B
Java
// "Move assignment to field declaration" "true"
|
|
|
|
class X {
|
|
static int f;
|
|
static {
|
|
f = <caret>0;
|
|
}
|
|
X(int i) {
|
|
}
|
|
void x() {
|
|
int i = f;
|
|
}
|
|
void x2() {
|
|
f = 9;
|
|
}
|
|
} |