aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/raw-string-4.c
blob: 24d56ed7464cd5adaf9d3fc013a122ecadab2c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* R is not applicable for character literals.  */
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */

const int	i0	= R'a';	/* { dg-error "undeclared" } */
		/* { dg-error "expected ',' or ';'" "" { target *-*-* } 5 } */
const int	i1	= uR'a';	/* { dg-error "undeclared" } */
		/* { dg-error "expected ',' or ';'" "" { target *-*-* } 7 } */
const int	i2	= UR'a';	/* { dg-error "undeclared" } */
		/* { dg-error "expected ',' or ';'" "" { target *-*-* } 9 } */
const int	i3	= u8R'a';	/* { dg-error "undeclared" } */
		/* { dg-error "expected ',' or ';'" "" { target *-*-* } 11 } */
const int	i4	= LR'a';	/* { dg-error "undeclared" } */
		/* { dg-error "expected ',' or ';'" "" { target *-*-* } 13 } */

#define R	1 +
#define uR	2 +
#define UR	3 +
#define u8R	4 +
#define LR	5 +

const int	i5	= R'a';
const int	i6	= uR'a';
const int	i7	= UR'a';
const int	i8	= u8R'a';
const int	i9	= LR'a';

int main () {}