(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
warn/
Wformat-char8_t-1.C
// PR c++/105626
// { dg-do compile { target c++11 } }
// { dg-options "-Wformat" }
// { dg-additional-options "-fchar8_t" { target c++17_down } }

int main()
{
  __builtin_printf((const char*) u8"test %d\n", 1); // { dg-bogus "format string" }
  return 0;
}