* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-const1.C
blob6ee72256e24e5fad910a48ad06cd14894ea1c563
1 // PR c++/54086
2 // { dg-do compile { target c++11 } }
4 static constexpr const char Data[] = {
5   'D', 'A', 'T', 'A',
6 };
7 static constexpr const char *data_func() { return Data; }