1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
[kernel] Parsing share/libc/__fc_builtin_for_normalization.i (no preprocessing)
[kernel] Parsing tests/syntax/Refresh_visitor.i (no preprocessing)
Start
[value] Analyzing a complete application starting at main
[value] Computing initial state
[value] Initial state computed
[value:initial-state] Values of globals at initialization
tests/syntax/Refresh_visitor.i:13:[value] warning: assertion got status unknown.
tests/syntax/Refresh_visitor.i:10:[value] warning: function main: postcondition got status unknown.
[value] Recording results for main
[value] done for function main
/* Generated by Frama-C */
struct S {
int i ;
};
/*@ lemma foo: ∀ struct S x; x.i ≥ 0 ∨ x.i < 0;
*/
/*@ ensures \result ≥ \old(x.i); */
int main(struct S x)
{
int y;
y = x.i;
/*@ assert y ≡ x.i; */ ;
return y;
}
|