* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-cast1.C
blob5446d85f3aab19a26eebcfc1e4a11d669aa318d3
1 // PR c++/83186
2 // { dg-do compile { target c++11 } }
4 struct a {
5   operator unsigned();
6 };
7 template <class> void b() { static_cast<unsigned>(a{}); }
9 int main()
11   b<int>();