Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / warn / Warray-bounds-3.C
bloba8585717988043a60b88193df209dab45460bdc7
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Wall" } */
4 extern void function(void * x);
6 struct A {
7     long x;
8     char d[0];
9 };
12 void test(A * a) {
13     function((char *)a - 4); /* { dg-bogus "below array bounds" } */