Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr22013-1.c
blob: 1dd0adcffc6d249229e679435e7f635db5ee36b4 [
file
] [
log
] [
blame
]
typedef
unsigned
short
W
;
typedef
const
W
*
P
;
extern
void
g
(
P
);
void
f
()
{
const
P s
=
(
const
W
[]){
'R'
};
g
(
s
);
}