OSDN Git Service

2009-10-16 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / Wpointer-arith.c
1 /* PR 35058: -Werror= works only with some warnings. */
2 /* { dg-do compile } */
3 /* { dg-options "-Werror=pointer-arith" } */
4 void *a;
5
6 void *test(){
7   int x=5;
8   if(a) a++; /* { dg-error "wrong type argument to increment" } */
9   return a+x; /* { dg-error "pointer of type" } */
10 }