* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-64462.C
blob8cfd405f73bdd8b55c3a05e205ebf86cc71f3bfd
1 // PR c++/64462
2 // { dg-do compile { target c++11 } }
4 int x = 0;
5 int z;
7 int main() {
8   constexpr int& y = x;
9   // OK, 'y' is not ODR used
10   [] { z = y; }();