blob: 0ce31917957ca2a072f1e1344476bda80c990a10 [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;
}