* src/SDCCsymt.c: reverted bad fixed of bug #1805702
[fw/sdcc] / support / regression / tests / bug-1805702.c
1 /* bug-1805702.c
2  */
3
4 /* disabled */
5 #if 0
6 #include <testfwk.h>
7
8 int foo;
9 extern int foo;
10
11 void
12 test(void)
13 {
14   foo = 10;
15
16   ASSERT(foo == 10);
17 }
18 #endif