1 // { dg-do run { target c++11 } }
2 // { dg-skip-if "requires hosted libstdc++ for cassert" { ! hostedlib } }
4 // Make sure embedded quotes are not a problem for string and char literals.
9 int operator ""_embedchar(char)
12 int operator ""_embedstr(const char*, std::size_t len)
18 int i = '\''_embedchar;
20 int j = "\""_embedstr;
23 int k = "foo\""_embedstr;
26 int l = "\"bar"_embedstr;