struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-widechar-2.c
blobe22f88a8e4005fa33b4102b72f4cb125538f498c
1 /*
2 widechar-2.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 #include <stddef.h>
9 const wchar_t ws[] = L"foo";
11 void
12 testTortureExecute (void)
14 if (ws[0] != L'f' || ws[1] != L'o' || ws[2] != L'o' || ws[3] != L'\0')
15 ASSERT(0);
17 return;