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-2842.c
blob
88920a7604f7eff432f73aab2079158a9bcb5993
1
/*
2
bug-2842.c
3
Duplicate typedefs to same type were rejected even in C11 mode.
4
*/
5
6
#include <testfwk.h>
7
8
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
9
typedef
int
i_t
;
10
typedef
int
i_t
;
11
#endif
12
13
void
testBug
(
void
)
14
{
15
}
16