OSDN Git Service

PR preprocessor/30805:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr17036-1.c
1 /* { dg-do compile } */
2
3 int main ()
4 {
5   int R, N = 4;
6   unsigned int A = 2;
7   signed int B = 2;
8   ((B >> N) & 1) ? 1 : 0;
9   ((A >> N) & 1) ? 1 : 0;
10   return 0;
11 }