blob: 884baa0d4379cf21278c4b95bd1d8ff4f7eeeebf [file] [log] [blame]
/* 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" } */