Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
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
);
}