blob: 50e6c05575c7a3f79161aca95a9177f8b02a32f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Test for bug in conversions from 5-byte UTF-8 sequences in
cpplib. */
/* { dg-do run { target { 4byte_wchar_t } } } */
/* { dg-options "-std=gnu99 -w" } */
extern void abort (void);
extern void exit (int);
__WCHAR_TYPE__ ws[] = L"�����";
int
main (void)
{
if (ws[0] != L'\U03FFFFFF' || ws[1] != 0)
abort ();
exit (0);
}
|