blob: 4ede799da8d15e2066df80449f116e0e89c1b7f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* { dg-options "-fdiagnostics-show-caret -std=c++11" } */
const void *s = u8"a" u"b"; // { dg-error "24: non-standard concatenation" }
/* { dg-begin-multiline-output "" }
const void *s = u8"a" u"b";
~~~~~ ^~~~
{ dg-end-multiline-output "" } */
const void *s2 = u"a" u"b" u8"c"; // { dg-error "30: non-standard concatenation" }
/* { dg-begin-multiline-output "" }
const void *s2 = u"a" u"b" u8"c";
~~~~ ^~~~~
{ dg-end-multiline-output "" } */
#define TEST_U8_LITERAL u8"a"
const void *s3 = TEST_U8_LITERAL u8"b";
const void *s4 = TEST_U8_LITERAL u"b"; // { dg-error "34: non-standard concatenation" }
/* { dg-begin-multiline-output "" }
const void *s4 = TEST_U8_LITERAL u"b";
^~~~
{ dg-end-multiline-output "" } */
|