repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-983491.c
blob
72e2a79a26064c5a186337471e0693f6bdd0b18e
1
/* bug-983491.c
2
*/
3
4
#include <testfwk.h>
5
6
/*
7
* test disabled since the fix was reverted
8
*/
9
10
/*
11
code struct {
12
char* b;
13
} c[2] = {
14
{"abc"},
15
{"abc"}
16
};
17
*/
18
19
void
20
testMergeStr
(
void
)
21
{
22
/* ASSERT(c[0].b == c[1].b); */
23
}