* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-concat-neg.C
blob3093a7c055d119e9d19e352c4e8b29b23aeae0a1
1 // { dg-do compile { target c++11 } }
3 #include <string>
5 std::string operator"" _xxx(const char*, size_t);
7 std::string operator"" _yyy(const char*, size_t);
9 std::string concat = "Hello, "_xxx "World!"_yyy;        // { dg-error "inconsistent user-defined literal suffixes" }