struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / tests / bug-983491.c
blob72e2a79a26064c5a186337471e0693f6bdd0b18e
1 /* bug-983491.c
2 */
4 #include <testfwk.h>
6 /*
7 * test disabled since the fix was reverted
8 */
11 code struct {
12 char* b;
13 } c[2] = {
14 {"abc"},
15 {"abc"}
19 void
20 testMergeStr(void)
22 /* ASSERT(c[0].b == c[1].b); */