aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/call-diag-1.c
blob: 884baa0d4379cf21278c4b95bd1d8ff4f7eeeebf (plain)
1
2
3
4
5
6
7
8
9
/* 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" } */