aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/utf-type.c
blob: 1aa6020cbef254e4225f2ee797c81bc90dc4a695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
/* Ensure that __CHAR16_TYPE__ and __CHAR32_TYPE__ exist, and are of the
   correct width. */
/* { dg-do run } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */

typedef __CHAR16_TYPE__ char16_t;
typedef __CHAR32_TYPE__ char32_t;

extern void abort (void);

int main ()
{
    if (sizeof (char16_t) != sizeof (u'a'))
	abort();
    if (sizeof (char32_t) != sizeof (U'a'))
	abort();
}