* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto40.C
blob287191e591047c429859f7399a1657415a0eb47d
1 // PR c++/58888
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 struct A
8   static constexpr auto b{1.0};
9 };
11 constexpr decltype(A::b) A::b;