PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / Wpointer-arith.c
blob2d5b0cee3cd8b13af01ebd7c9abd4edd2743d245
1 /* PR 35058: -Werror= works only with some warnings. */
2 /* { dg-do compile } */
3 /* { dg-options "-Werror=pointer-arith" } */
4 void *a;
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" } */
11 /* { dg-message "some warnings being treated as errors" "" {target "*-*-*"} 0 } */