]> andersk Git - splint.git/blame - test/impabstract.c
noexpand always false.
[splint.git] / test / impabstract.c
CommitLineData
80ee600a 1typedef int mint; /* Concrete in impabstract.lcl */
2typedef /*@concrete@*/ int cint; /* Abstract in impabstract.lcl */
885824d3 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.202974 seconds and 5 git commands to generate.