fixed so that it doesn't produce compilation errors
[fw/sdcc] / support / regression / tests / bug-1805702.c
1 /* bug-1805702.c
2  */
3
4 #include <testfwk.h>
5
6 /* disabled */
7 #if 0
8 int foo;
9 extern int foo;
10 #endif
11
12 void
13 test(void)
14 {
15 /* disabled */
16 #if 0
17   foo = 10;
18
19   ASSERT(foo == 10);
20 #endif
21 }