comparison gcc/testsuite/g++.dg/ext/utf-type-char8_t.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Ensure that __CHAR8_TYPE__ exists and matches the underlying type. */
2 /* { dg-do run { target c++11 } } */
3 /* { dg-options "-fchar8_t -Wall -Werror" } */
4
5 extern "C" void abort (void);
6
7 int main ()
8 {
9 if (sizeof (__CHAR8_TYPE__) != sizeof (char8_t))
10 abort();
11 }