PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / pr84607.c
blob710ee94f729be89fd5ebf0f81814ebf22d2ecb2a
1 /* { dg-do run } */
3 extern void exit(int);
4 extern void abort(void);
5 int a[10];
6 int foo()
8 exit (0);
9 return 0;
11 int main()
13 if (&a[foo()])
14 abort ();
15 return 0;