fixed so that it doesn't produce compilation errors
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 30 Oct 2007 20:45:23 +0000 (20:45 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Tue, 30 Oct 2007 20:45:23 +0000 (20:45 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4955 4a8a32a2-be11-0410-ad9d-d568d2c75423

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
+}