1 // Test -Wsizeof-pointer-memaccess warnings.
3 // { dg-options "-Wall -Wno-sizeof-array-argument" }
5 typedef __SIZE_TYPE__ size_t;
6 extern "C" void *memset (void *, int, size_t);
9 foo (int x, char b[10])
11 long a[memset (b, 0, sizeof (b)) ? x + 10 : x]; // { dg-warning "call is the same expression as the destination; did you mean to provide an explicit length?" }