1 /*
2 widechar-1.c from the execute part of the gcc torture tests.
3 */
4 
5 #include <testfwk.h>
6 
7 #define C L'\400'
8 
9 #if C
10 #define zero (!C)
11 #else
12 #define zero C
13 #endif
14 
15 void
testTortureExecute(void)16 testTortureExecute (void)
17 {
18   if (zero != 0)
19     ASSERT (0);
20   return;
21 }
22