* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-concat.C
blobd4f10c2973f285bbc8e51172abeb9b86d93cf923
1 // { dg-do compile { target c++11 } }
3 #include <string>
5 std::string operator"" _www(const char*, size_t);
7 std::string concat01 = "Hello, " "World!"_www;
9 std::string concat10 = "Hello, "_www "World!";
11 std::string concat11 = "Hello, "_www "World!"_www;
14 class Tachyon { };
16 Tachyon operator"" _fast(const char*, size_t);
18 int operator"" _fast(const char32_t*, size_t);
20 int speedy01 = "Hello, " U"World!"_fast;
22 int speedy10 = "Hello, "_fast U"World!";
24 int speedy11 = "Hello, "_fast U"World!"_fast;