]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c99-flex-array-typedef-3.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c99-flex-array-typedef-3.c
CommitLineData
065d214c
MP
1/* Test for flexible array members. Test for where structures with
2 such members may not occur. */
3/* { dg-do compile } */
4/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
5
6typedef int T[];
7struct flex { int a; T b; };
8union rf1 { struct flex a; int b; };
9union rf2 { int a; struct flex b; };
10union rf3 { int a; union rf1 b; };
11union rf4 { union rf2 a; int b; };
12
13/* The above structure and unions may not be members of structures or
14 elements of arrays (6.7.2.1#2). */
15
16struct t0 { struct flex a; }; /* { dg-error "invalid use of structure" } */
17struct t1 { union rf1 a; }; /* { dg-error "invalid use of structure" } */
18struct t2 { union rf2 a; }; /* { dg-error "invalid use of structure" } */
19struct t3 { union rf3 a; }; /* { dg-error "invalid use of structure" } */
20struct t4 { union rf4 a; }; /* { dg-error "invalid use of structure" } */
21
22void f0 (struct flex[]); /* { dg-error "invalid use of structure" } */
23void f1 (union rf1[]); /* { dg-error "invalid use of structure" } */
24void f2 (union rf2[]); /* { dg-error "invalid use of structure" } */
25void f3 (union rf3[]); /* { dg-error "invalid use of structure" } */
26void f4 (union rf4[]); /* { dg-error "invalid use of structure" } */
27
28struct flex a0[1]; /* { dg-error "invalid use of structure" } */
29union rf1 a1[1]; /* { dg-error "invalid use of structure" } */
30union rf2 a2[1]; /* { dg-error "invalid use of structure" } */
31union rf3 a3[1]; /* { dg-error "invalid use of structure" } */
32union rf4 a4[1]; /* { dg-error "invalid use of structure" } */