aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/void-cast-1.c
blob: bd4e7b3bf7aca0b40c17b86c1996541fcc074378 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Don't warn where the left-hand side of a comma expression is a
   comma expression whose right-hand side is cast to void.  Bug
   21159.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-Wall" } */

int a, b, c, d;
int e(void) { return (void)a, b; }
int f(void) { return (void)a, (void)b, c; }
int g(void) { return (void)a, (void)b, (void)c, d; }