PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / cast-pretty-print-1.c
blobb9da56674dd4861e09e698fd2ca97060d61eb1bc
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)
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" } */