(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
cast-pretty-print-1.c
       1  /* Test pretty-printing of casts.  Should not depend on whether
       2     NOP_EXPR or CONVERT_EXPR is used.  */
       3  /* Origin: Joseph Myers <joseph@codesourcery.com> */
       4  /* { dg-do compile } */
       5  /* { dg-options "" } */
       6  int i;
       7  void
       8  f (void)
       9  {
      10    ((unsigned int)i)(); /* { dg-error "called object '\\(unsigned int\\)i' is not a function" } */
      11    ((char)i)(); /* { dg-error "called object '\\(char\\)i' is not a function" } */
      12  }