blob: ae586d5e08c55306d4971a79831b8fa805a3d215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* PR preprocessor/104030 */
/* { dg-do compile } */
/* By default, don't warn about UCNs. */
const char *
fn ()
{
const char *aText = "\u202D" "abc";
/* { dg-bogus "unpaired" "" { target *-*-* } .-1 } */
return aText;
}
|