then body
else body
then body
else body
then body
else body
then body
else undefined
/**** File 'if.c' ****/

int scope_test() {
   int a, b;
   if(1) a;
   else b;
   if(1) {
   }
   else {
   }
   if(1) ;
   else ;
   if(1) ;
}

/**** End File ****/