Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / pr13804-1.c
blob2dbd731fd692d2dc1bb366bb394eb20c111b9ec2
1 /* Diagnostics for attempts to access a member not in a structure or
2 union should name the type involved. Bug 13804. */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "" } */
7 struct s0 { int a; };
8 union u0 { long b; };
9 typedef struct s0 S0;
10 typedef union u0 U0;
12 struct s0 x0;
13 S0 x1;
14 union u0 x2;
15 U0 x3;
16 struct s0 *x4;
17 union u0 *x5;
19 void
20 f (void)
22 x0.c; /* { dg-error "error: 'struct s0' has no member named 'c'" } */
23 x1.c; /* { dg-error "error: 'S0' has no member named 'c'" } */
24 x2.c; /* { dg-error "error: 'union u0' has no member named 'c'" } */
25 x3.c; /* { dg-error "error: 'U0' has no member named 'c'" } */
26 x4->c; /* { dg-error "error: 'struct s0' has no member named 'c'" } */
27 x5->c; /* { dg-error "error: 'union u0' has no member named 'c'" } */