summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/raw-string-7.c
blob: 5bb4bec20856e77b320f88c8645665f9cb630930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* The trailing whitespace after \ and before newline extension
   breaks full compliance for raw strings.  */
/* { dg-do run { xfail *-*-* } } */
/* { dg-options "-std=gnu99" } */

/* Note, there is a single space after \ on the following line.  */
const void *s0 = R"[\ 
]";
/* { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 7 } */

/* Note, there is a single tab after \ on the following line.  */
const void *s1 = R"[\	
]";
/* { dg-bogus "backslash and newline separated by space" "" { xfail *-*-* } 12 } */

int
main (void)
{
  if (__builtin_strcmp (s0, "\\ \n") != 0
      || __builtin_strcmp (s1, "\\\t\n") != 0)
    __builtin_abort ();
  return 0;
}