annotate gcc/testsuite/g++.dg/cpp0x/udlit-raw-str.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // { dg-do compile { target c++11 } }
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 #include <string>
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 std::string operator"" _i18n(const char*, std::size_t);
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 std::string vogon_poem = R"V0G0N(
kono
parents:
diff changeset
8 O freddled gruntbuggly thy micturations are to me
kono
parents:
diff changeset
9 As plured gabbleblochits on a lurgid bee.
kono
parents:
diff changeset
10 Groop, I implore thee my foonting turlingdromes.
kono
parents:
diff changeset
11 And hooptiously drangle me with crinkly bindlewurdles,
kono
parents:
diff changeset
12 Or I will rend thee in the gobberwarts with my blurlecruncheon, see if I don't.
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 (by Prostetnic Vogon Jeltz; see p. 56/57)
kono
parents:
diff changeset
15 )V0G0N"_i18n;