Open
Description
https://godbolt.org/z/3TKjKen34
int a,b,c;
int main(){
if(a){
c=1;
}
else //The expected warning position
if(b){ c = 0; }
return 0;
}
https://godbolt.org/z/3TKjKen34
int a,b,c;
int main(){
if(a){
c=1;
}
else //The expected warning position
if(b){ c = 0; }
return 0;
}