2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / bitfield6.C
blobc1e8a17989b596459eb96465c3459e940342eed0
1 // PR c++/81607
3 int a;
5 struct b {
6   long c : 32;
7 } d;
9 char f = (903092 ? int(d.c) : 0) << a;