blob: a897bf59e5d0a2f5f34e5aaccf4241f94e4fc33a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// PR c++/16376
// { dg-do run }
int main(void){
struct bits {
unsigned int ui3 : 3;
} bits;
int i = -1; /* is a very large positive number as unsigned */
bits.ui3 = 1u;
if( bits.ui3 < i )
return 1;
return 0;
}
|