rt_gccstream/gcc/testsuite/gcc.dg/call-diag-1.c

10 lines
398 B
C

/* The warning for calling through a non-compatible type must not
disable the normal diagnostics from comparing the argument list
against the type of the called expression. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */
void foo (void);
void bar (void) { ((long (*)(int))foo) (); } /* { dg-error "too few arguments to function" } */