PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr17036-1.c
blobea2c9caf6f93afe3a7dc50296f638dc0e37cfe7a
1 /* { dg-do compile } */
3 int main ()
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;