* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ref9.C
blob97f88fefc6e8abd50af8c6fbfbc0177900f83882
1 // { dg-do compile { target c++11 } }
3 int a[2] = { 1, 2 };
5 int main()
7   auto &r = a;
8   static_assert (&r[0] == &a[0], "");