1// PR c++/27722
2
3void foo()
4{
5  const int x[] = 0; // { dg-error "size" }
6  ++x;
7}
8