diffblue-cbmc/regression/cbmc-library/equality_through_struct5/main.c

34 lines
342 B
C

#include <assert.h>
#include <string.h>
struct str
{
int x;
int y;
int z;
};
void pass_through_struct(struct str *s, int q)
{
memset(s, 0, sizeof(struct str));
s->x += q;
s->y += s->x;
s->z += s->y;
return s;
}
int main(void)
{
int q;
struct str s;
pass_through_struct(&s, q);
assert(q == s.z);
return 1;
}