1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/56815 // { dg-options "-Wpointer-arith" } int main() { void *pv = 0; pv++; // { dg-warning "forbids incrementing a pointer" } typedef void (*pft) (); pft pf = 0; pf++; // { dg-warning "forbids incrementing a pointer" } }