bool foo(bool cond) {
  if(cond) {
    if(cond) {
      return true;
    }
  }
  return false;
}
