Commit 1dde5a4e by DJ Delorie Committed by DJ Delorie

20011008-1.c: New.

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

From-SVN: r46087
parent 11064ef9
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.
......
/* { 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;
/* { 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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment