* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr58781.C
blob069fcd5f6dce43c2590bce6ca036596cf9d2d232
1 // PR c++/58781
2 // { dg-do compile { target c++11 } }
4 #include <cstddef>
6 int
7 operator""_s(const char32_t *a, size_t b)
9   return 0;
12 void
13 f()
15   using a = decltype(U"\x1181"_s);
16   using b = decltype(U"\x8111"_s);
17   using c = decltype(U" \x1181"_s);