/* catch the bug */

struct x {
  int botch:1;

};

fun(){
  struct x x;
  x.botch = 0;
  x.botch = 1;

} 
