(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
pr70651.c
       1  /* PR c/70651 */
       2  /* { dg-do compile } */
       3  /* { dg-prune-output "\[^\n\r\]*first argument to .va_arg. not of type .va_list.\[^\n\r\]*" } */
       4  
       5  void fn1 ()
       6  {
       7    char **a = 0;
       8    __builtin_va_arg (a, char **);
       9  }