2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / cpp / 20000207-2.c
blobfbdf39e14260493614100a95486f6c774c5365de
1 /* { dg-do preprocess } */
3 /* Test for proper handling of unary plus in #if. */
5 #if !(+1)
6 #error Error /* { dg-bogus "Error" "case !(+1)" } */
7 #endif
9 #if !+1
10 #error Error /* { dg-bogus "Error" "case !+1" } */
11 #endif
13 #if +1
14 #else
15 #error Error /* { dg-bogus "Error" "case +1" } */
16 #endif