1 // The trailing whitespace after \ and before newline extension
2 // breaks full compliance for raw strings.
3 // { dg-do run { xfail *-*-* } }
4 // { dg-options "-std=c++0x" }
6 // Note, there is a single space after \ on the following line.
9 // { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 7 }
11 // Note, there is a single tab after \ on the following line.
14 // { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 12 }
19 if (__builtin_strcmp (s0, "\\ \n") != 0
20 || __builtin_strcmp (s1, "\\\t\n") != 0)