function foo(a, b) {
  while (a) {
    break;
  }
  return b;
}