* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr60430.C
blob04167d29979374f5316e438ffd22db4efc9092d2
1 // { dg-do compile { target c++11 } }
3 constexpr const int A = 42;
4 const int &B = A;
5 static_assert(&A == &B, "Bug");