aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/struct-empty-2.c
blob: 1f06a1b1764377387ff19fbbf7ad408de4ffd9ec (plain)
1
2
3
4
5
6
7
8
9
10
/* Test diagnostics for empty structures and unions.  Test with
   -pedantic.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "-pedantic" } */

struct s0 {}; /* { dg-warning "struct has no members" } */
union u0 {}; /* { dg-warning "union has no members" } */
struct s1 { int : 1; }; /* { dg-warning "struct has no named members" } */
union u1 { int : 1; }; /* { dg-warning "union has no named members" } */