20011008-1.c: New.

* gcc.dg/20011008-1.c: New.
* gcc.dg/20011008-2.c: New.

From-SVN: r46087
This commit is contained in:
DJ Delorie 2001-10-08 15:42:40 -04:00 committed by DJ Delorie
parent 11064ef947
commit 1dde5a4edc
3 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-10-08 DJ Delorie <dj@redhat.com>
* gcc.dg/20011008-1.c: New.
* gcc.dg/20011008-2.c: New.
2001-10-08 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.dg/cpp/spacing1.c: Update test.

View File

@ -0,0 +1,8 @@
/* { dg-do compile } */
/* { dg-options "-O0" } */
struct { int; int q; } a; /* { dg-error "unnamed" } */
struct { union {int x;}; int q; } b;
struct { struct {int x;}; int q; } c;
union { union {int x;}; int q; } d;
union { struct {int x;}; int q; } e;

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-O0" } */
struct { union {int x; int y;}; int q; } b;
union { struct {int x;}; int q; } e;
main()
{
b.y = 10;
b.x = 15;
if (b.y != 15)
abort();
e.x = 10;
e.q = 15;
if (e.x != 15)
abort();
exit(0);
}