aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wcast-qual1.C
blob: e6ad4f6a06db970c6e9df625a6b01520ac8b7ba2 (plain)
1
2
3
4
5
6
7
// PR c++/24667
// { dg-options "-Wcast-qual" }

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