Skip to content
Snippets Groups Projects
bts0588.res.oracle 210 B
[kernel] Parsing bts0588.i (no preprocessing)
/* Generated by Frama-C */
void g(int a);

/*@ requires a ≥ 0; */
void g(int a)
{
  return;
}

/*@ ensures \old(a) > 0; */
void f(int a)
{
  a = 1;
  return;
}