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