blob: 74f60bb569a5f307440bdad5f87fae2a23fe3819 [file] [log] [blame]
/* PR middle-end/46388 */
struct S;
struct T
{
struct S *t;
};
extern struct S s, u;
void
foo (void)
{
((struct T *) &u)->t = &s;
}