(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
20000111-1.c
       1  /* Copyright (C) 2000  Free Software Foundation.
       2  
       3     by Alexandre Oliva  <oliva@lsd.ic.unicamp.br>  */
       4  
       5  /* { dg-do compile } */
       6  
       7  __inline int
       8  foo (int **q) {
       9    return *q && **q;
      10  }
      11  
      12  void
      13  bar () {
      14    int **p;
      15    if (foo (p))
      16      do_something ();
      17  }