blob: ebdde97b57a3c92e03e26e39eef90b172acd4b2b [file] [log] [blame]
/* Test C2X UTF-8 string literal type. */
/* { dg-do compile } */
/* { dg-options "-std=c2x" } */
_Static_assert (_Generic (u8"text", unsigned char*: 1, default: 2) == 1, "UTF-8 string literals have an unexpected type");
_Static_assert (_Generic (u8"x"[0], unsigned char: 1, default: 2) == 1, "UTF-8 string literal elements have an unexpected type");