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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68162-1.c
blob
a2c495365fed95dc147dd781a45437b082de2fad
1
/* Test handling of pointers to arrays of const elements involving a
2
typedef. PR c/68162. */
3
4
typedef
const double
cd
;
5
void
f
(
const double
(*)[]);
6
void
g
(
void
) {
f
((
cd
(*)[])
0
); }