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 f(void)8f (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 } 13