Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr39983.c
blob: 67081211ccaa327e1d1b109ccfa442834f74da82 [
file
] [
log
] [
blame
]
typedef
struct
{
int
*
p
;
}
*
A
;
extern
const
int
a
[
1
];
extern
const
int
b
[
1
];
void
foo
()
{
A x
;
A y
;
static
const
int
*
const
c
[]
=
{
b
};
x
->
p
=
(
int
*)
c
[
0
];
y
->
p
=
(
int
*)
a
;
}