PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / c-c++-common / Wunused-var-11.c
bloba59ef8149386e973bed51198fbe9bef5a8bfe612
1 /* PR c++/44443 */
2 /* { dg-options "-Wunused" } */
3 /* { dg-do compile } */
5 int i;
7 void
8 f1 ()
10 const int * __attribute__((unused)) a = &i;
11 const int *b __attribute__((unused)) = &i;