URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [cpp/] [20000207-1.c] - Rev 12
Compare with Previous | Blame | View Log
/* { dg-do preprocess } */ /* Test for proper handling of unary minus in #if. */ #if !(-1) #error Error /* { dg-bogus "Error" "case !(-1)" } */ #endif #if !-1 #error Error /* { dg-bogus "Error" "case !-1" } */ #endif #if -1 #else #error Error /* { dg-bogus "Error" "case -1" } */ #endif