Since C++20 P2513R4, char8_t Compatibility and Portability Fix it is
no longer true that
char ca[] = u8"xx";
causes an error so adjust the example for -fchar8_t.
gcc/ChangeLog:
* doc/invoke.texi: Update -fchar8_t documentation.
@option{-fchar8_t} is specified.
@smallexample
-char ca[] = u8"xx"; // error: char-array initialized from wide
- // string
const char *cp = u8"xx";// error: invalid conversion from
// `const char8_t*' to `const char*'
int f(const char*);