]> andersk Git - splint.git/blame - test/unnamedsu.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / test / unnamedsu.c
CommitLineData
288cbc5c 1typedef struct _su
2{
3 int x1;
4 union
5 {
6 int u1;
7 int u2;
8 } ;
9 int x2;
10} su;
11
12su wtd = { 1, NULL, 2 };
13
14int f (su *s)
15{
16 return s->u1 + s->x1;
17}
18
19
This page took 0.082733 seconds and 5 git commands to generate.