summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/data/rawstringliterals.cpp
blob: d77f4275deff6ecb29becdc921f9da8a864bae7a (plain)
1
2
3
4
5
6
7
8
9
10
11
class String;
void f()
{
    String r1 = R"(raw text)";
    String r2 = R"(
raw text line1
raw text line2
)";
    String other;
}