* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-raw-op-string-neg.C
blobbe68333f509ac24d8962e998a9928f51d37afb5e
1 // { dg-do compile { target c++11 } }
3 //  Make sure handing a string to a raw literal generates a sensible error message.
5 int operator"" _embedraw(const char*)
6 { return 41; }
8 int k = "Boo!"_embedraw;  //  { dg-error "unable to find string literal operator" }