struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug3190029.c
blob1d12e1dd2fece421b0e09f3e4093fe15fc4d76fe
1 /*
2 bug3190029.c
3 */
5 #include <testfwk.h>
7 void bar(void)
11 /* No need to call this, threw
12 error 20: Undefined identifier 'c' */
13 void foo(void)
16 int c;
17 c = 0; //undefined identifier?
19 (void (*)(void *))bar;
22 void testBug(void)
24 ASSERT (1);