handle multi-part files
[tridge/junkcode.git] / werror.c
1
2 typedef struct { unsigned x; } FOOBAR;
3
4 void bar(unsigned, FOOBAR, unsigned);
5
6 main()
7 {
8         FOOBAR foo = (FOOBAR){3};
9         bar(1, foo, 2);
10 }