fixed so that it doesn't produce compilation errors
[fw/sdcc] / support / regression / tests / bug-1805702.c
index 1b92e04a7793caadc4edb65cfa29e6dd5bfb9907..aaeac00ee50a58bd28ed84b8edbb811c085d934c 100644 (file)
@@ -1,18 +1,21 @@
 /* bug-1805702.c
  */
 
-/* disabled */
-#if 0
 #include <testfwk.h>
 
+/* disabled */
+#if 0
 int foo;
 extern int foo;
+#endif
 
 void
 test(void)
 {
+/* disabled */
+#if 0
   foo = 10;
 
   ASSERT(foo == 10);
-}
 #endif
+}