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;
}