blob: baf20f520a26a109014c4c10be1841f0ccc1de04 [file] [log] [blame]
struct X;
struct Y
{
struct X *p;
int i;
};
void foo (struct Y *p)
{
p->i = 1;
}