1struct ack {
2    char a, b, c;
3};
4
5main()
6{
7   struct ack bad;
8
9   foo(bad);
10}
11
12foo(c)
13   struct ack c;
14{
15}
16