* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-args.C
blob4680288d20c4e34af93b033275b31c9457fc5aed
1 // { dg-do compile { target c++11 } }
3 #include <cstddef>
5 class Foo { };
7 Foo
8 operator"" _Foo(const char *);
10 Foo
11 operator"" _Foo(unsigned long long int);
13 Foo
14 operator"" _Foo(long double);
16 Foo
17 operator"" _Foo(char);
19 Foo
20 operator"" _Foo(wchar_t);
22 Foo
23 operator"" _Foo(char16_t);
25 Foo
26 operator"" _Foo(char32_t);
28 Foo
29 operator"" _Foo(const char *, std::size_t);
31 Foo
32 operator"" _Foo(const wchar_t *, std::size_t);
34 Foo
35 operator"" _Foo(const char16_t *, std::size_t);
37 Foo
38 operator"" _Foo(const char32_t *, std::size_t);