blob: a7d8b16a2858ac9327767cbf983f6db65a71f40c [file] [log] [blame]
/* Ensure that __CHAR8_TYPE__ exists and matches the underlying type. */
/* { dg-do run { target c++11 } } */
/* { dg-options "-fchar8_t -Wall -Werror" } */
extern "C" void abort (void);
int main ()
{
if (sizeof (__CHAR8_TYPE__) != sizeof (char8_t))
abort();
}