blob: e2f0da4e4d4db0eadca3f86bde6ccc841e0d5e9b [file] [log] [blame]
/* P2290R3 - Delimited escape sequences */
/* { dg-do compile } */
/* { dg-require-effective-target wchar } */
/* { dg-options "-std=c17 -Wno-c++-compat -Wno-unicode" { target c } } */
/* { dg-options "-std=c++23 -Wno-unicode" { target c++ } } */
#define z(x) 0
#define a z(
int b = a\u{}); /* { dg-bogus "empty delimited escape sequence; treating it as separate tokens" } */
int c = a\u{); /* { dg-bogus "'\\\\u\\\{' not terminated with '\\\}' after \\\\u\\\{; treating it as separate tokens" } */
int d = a\u{12XYZ}); /* { dg-bogus "'\\\\u\\\{' not terminated with '\\\}' after \\\\u\\\{12; treating it as separate tokens" } */
int e = a\u123);
int f = a\U1234567);