* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ref5.C
blob230510c4c29f874e89652dba7cb5946fdc743e2e
1 // PR c++/50473
2 // { dg-do compile { target c++11 } }
4 constexpr int f() { return 1; }
6 template<class T>
7 struct test
9   static constexpr const auto& value = f();
10   int a[value];
13 test<int> t;