mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
12 lines
147 B
Java
12 lines
147 B
Java
// "Move assignment to field declaration" "INFORMATION"
|
|
|
|
class X {
|
|
int f = 0;
|
|
X() {
|
|
<caret>}
|
|
X(int i) {
|
|
if (1==1) ;
|
|
else {
|
|
}
|
|
}
|
|
} |