fixed so that it doesn't produce compilation errors
[fw/sdcc] / support / regression / tests / bug-1805702.c
index 91c49952fa6928f7ceb2fe3ffa56674608ce200c..aaeac00ee50a58bd28ed84b8edbb811c085d934c 100644 (file)
@@ -7,12 +7,15 @@
 #if 0
 int foo;
 extern int foo;
+#endif
 
 void
 test(void)
 {
+/* disabled */
+#if 0
   foo = 10;
 
   ASSERT(foo == 10);
-}
 #endif
+}