* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-array13.C
blobe2a6e865e37b35a85b703ed624df112e9a32e8da
1 // PR c++/68087
2 // { dg-do compile { target c++11 } }
4 constexpr char c[] = "hello";
5 constexpr const char *p = c;
6 constexpr char ch = *(p-1);  // { dg-error "array subscript" }