]> andersk Git - splint.git/blame - test/clauses2.c
Pushed back constraintResolve.c to the previous version.
[splint.git] / test / clauses2.c
CommitLineData
885824d3 1extern /*@only@*/ int *new_ip (void);
2
3/*@only@*/ int *f(void)
4{
5 int *x = new_ip ();
6 int *y;
7
8 if (3 > 4)
9 {
10 y = x;
11 }
12 else
13 {
14 free (x);
15 y = new_ip ();
16 }
17
18 return y;
19}
This page took 0.079712 seconds and 5 git commands to generate.