(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
cpp/
delimited-escape-seq-2.c
       1  /* P2290R3 - Delimited escape sequences */
       2  /* { dg-do compile } */
       3  /* { dg-options "-std=gnu99 -Wno-c++-compat" { target c } } */
       4  /* { dg-options "-std=c++23" { target c++ } } */
       5  
       6  int jalape\u{f1}o = 42;
       7  
       8  int
       9  caf\u{000e9} (void)
      10  {
      11    return jalape\u00F1o;
      12  }
      13  
      14  int
      15  test (void)
      16  {
      17    return caf\u00e9 ();
      18  }