struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-2973.c
blob3fecf8c9188fef8094d225009a3019ea3033fe60
1 /*
2 bug-2973.c
3 */
5 #include <testfwk.h>
7 typedef int *foo_t;
9 void f(const foo_t x)
11 *x = 1;
14 // nothing to run - bug is a compilation failure
16 void testBug (void)