view gcc/testsuite/g++.dg/ext/utf-type-char8_t.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* 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();
}