aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/utf-type-char8_t.C
blob: a7d8b16a2858ac9327767cbf983f6db65a71f40c (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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();
}