OSDN Git Service

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