* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ref7.C
blob72c8d089d7742beba13ab364d18f9af96e9be276
1 // PR c++/57654
2 // { dg-do compile { target c++11 } }
4 int i;
6 constexpr int & iref = i;
7 constexpr int & irefref = iref;
9 class A {
10   static constexpr int & irefref = iref;