* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ref3.C
blob7936536042d57fa211683bff81f9f1c19bf70160
1 // PR c++/50298
2 // { dg-do compile { target c++11 } }
4 int global_variable;
6 template <class T> struct X {
7   static constexpr T r = global_variable;
8 };
10 X<int&> x;