mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
13 lines
152 B
Java
13 lines
152 B
Java
// "Move assignment to field declaration" "INFORMATION"
|
|
|
|
class X {
|
|
//sds
|
|
int f = 0;
|
|
X() {
|
|
}
|
|
X(int i) {
|
|
if (1==1) ;
|
|
else {
|
|
}
|
|
}
|
|
} |