Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr68162-1.c
blob: a2c495365fed95dc147dd781a45437b082de2fad [
file
] [
log
] [
blame
]
/* Test handling of pointers to arrays of const elements involving a
typedef. PR c/68162. */
typedef
const
double
cd
;
void
f
(
const
double
(*)[]);
void
g
(
void
)
{
f
((
cd
(*)[])
0
);
}