simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-args.C
blob2c1058ec344cfbff015ad388211eb234f9d76483
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);