blob: 1df9f4efb22d9a9ce507e266c14795c9e240009e [file] [log] [blame]
struct s { char *p; int t; };
extern void bar (void);
extern void foo (struct s *);
int main(void)
{
bar ();
bar ();
exit (0);
}
void
bar (void)
{
foo (& (struct s) { "hi", 1 });
}
void foo (struct s *p)
{
if (p->t != 1)
abort();
p->t = 2;
}