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
Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git]
/
sdcc
/
support
/
regression
/
tests
/
bug-2973.c
blob
3fecf8c9188fef8094d225009a3019ea3033fe60
1
/*
2
bug-2973.c
3
*/
4
5
#include <testfwk.h>
6
7
typedef
int
*
foo_t
;
8
9
void
f
(
const
foo_t x
)
10
{
11
*
x
=
1
;
12
}
13
14
// nothing to run - bug is a compilation failure
15
16
void
testBug
(
void
)
17
{
18
}
19