Wcast-qual1.C   [plain text]


// PR c++/24667
// { dg-options "-Wcast-qual" }

int main(int, char**) {
  const int foo[2] = {1,1};
  ((int*)foo)[0] = 0; // { dg-warning "cast" }
}