diff options
author | Richard Henderson <rth@redhat.com> | 2001-01-04 21:56:00 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-01-04 21:56:00 -0800 |
commit | 00de56c7d0e654b52c23e789dbe3cc32d361a527 (patch) | |
tree | b4606c69a6e503b36bcef04bc2f8a017f8bd95f6 /gcc/testsuite/gcc.dg/c99-flex-array-1.c | |
parent | 69f6e760a80eef94fa88119e4f2ac4c63353dc78 (diff) | |
download | gcc-00de56c7d0e654b52c23e789dbe3cc32d361a527.zip gcc-00de56c7d0e654b52c23e789dbe3cc32d361a527.tar.gz gcc-00de56c7d0e654b52c23e789dbe3cc32d361a527.tar.bz2 |
20000926-1.c: Update expected warnings.
* gcc.dg/20000926-1.c: Update expected warnings.
* gcc.dg/array-2.c: Likewise.
* gcc.dg/array-4.c: Also validate flexible array members.
* gcc.dg/c99-flex-array-1.c: New.
From-SVN: r38704
Diffstat (limited to 'gcc/testsuite/gcc.dg/c99-flex-array-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-flex-array-1.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/c99-flex-array-1.c b/gcc/testsuite/gcc.dg/c99-flex-array-1.c new file mode 100644 index 0000000..b14397a --- /dev/null +++ b/gcc/testsuite/gcc.dg/c99-flex-array-1.c @@ -0,0 +1,8 @@ +/* Test for invalid uses of flexible array members. */ +/* { dg-do compile } */ +/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */ + +struct s1 { int x[]; }; /* { dg-error "empty struct" "empty" } */ +struct s2 { int :1; int x[]; }; /* { dg-error "empty struct" "empty" } */ +struct s3 { int x[]; int y; }; /* { dg-error "not at end" "not at end" } */ +struct s4 { int x; int y[]; }; |