blob: 903c54a25e6a3abfc0e8007ba0025057fcac18f4 [file] [log] [blame]
typedef enum { C = 1, D = 2 } B;
extern void abort (void);
struct S
{
B __attribute__ ((mode (byte))) a;
B __attribute__ ((mode (byte))) b;
};
void
foo (struct S *x)
{
if (x->a != C || x->b != D)
abort ();
}
int
main (void)
{
struct S s;
s.a = C;
s.b = D;
foo (&s);
return 0;
}