repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
redecl-17.c
blob
686ebc5897195e76a47877b00192394c3b60a47b
1
/* { dg-do compile } */
2
3
void
(*
fp
)(
const int
i
);
4
void
(*
fp
)(
int
i
);
5
6
void
foo
()
7
{
8
(*
fp
)(
0
);
9
}
10