blob: b23b83f23b7103b4c2ea51ec386496d9448836e8 [file] [log] [blame]
/* P2290R3 - Delimited escape sequences */
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wno-c++-compat" { target c } } */
/* { dg-options "-std=c++23" { target c++ } } */
int jalape\u{f1}o = 42;
int
caf\u{000e9} (void)
{
return jalape\u00F1o;
}
int
test (void)
{
return caf\u00e9 ();
}