URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [udlit-raw-op-string-neg.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
// Make sure handing a string to a raw literal generates a sensible error message.
int operator"" _embedraw(const char*)
{ return 41; };
int k = "Boo!"_embedraw; // { dg-error "unable to find string literal operator" }