]> andersk Git - splint.git/blame - test/impabstract.c
Merged code tree with Dave Evans's version. Many changes to numberous to list....
[splint.git] / test / impabstract.c
CommitLineData
885824d3 1typedef int mint;
2typedef /*@concrete@*/ int cint;
3
4int f (mint m, cint c)
5{
6 if (c > 3)
7 {
8 return c;
9 }
10
11 if (m < 2)
12 {
13 return m;
14 }
15
16 return 3;
17}
This page took 0.049769 seconds and 5 git commands to generate.