1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
void fail(int same)
{
  int result;
  int i;

  i = 0;
  while (i <= 1) {
    i = (i + 1);
    same = (same + 1);
    break;
  };
  result = same;

}