aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr82816.c
blob: 8e9bd001bac25e5726397fbf981b8d8c3c0a1090 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
struct A
{
  int b:3;
} d, e;

int c;

void f ()
{
  char g = d.b * e.b;
  c = g;
}