blob: 9e23a807075911158376aeaff6cd66fdacda07c7 [file] [log] [blame]
// "Move assignment to field declaration" "true"
class X {
int f;
X() {
f = <caret>0;
}
X(int i) {
if (1==1) f=0; else {
f = 0;//sds
}
}
}