Sign in
gnu
/
gcc
/
ff4bf326d03e750a8d4905ea49425fe7d15a04b8
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr68162-1.c
blob: a2c495365fed95dc147dd781a45437b082de2fad [
file
]
/* 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
);
}