Skip to content
Snippets Groups Projects
bts0588.res.oracle 223 B
[kernel] Parsing tests/syntax/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;
}