Skip to content
Snippets Groups Projects
bts0323.res.oracle 258 B
Newer Older
[kernel] Parsing bts0323.c (with preprocessing)
[kernel] Parsing bts0323-2.c (with preprocessing)
/* Generated by Frama-C */
int x;

void g(void);

void f(void)
{
  x = 0;
  return;
}

int x = 1;
/*@ ensures x ≢ 0; */
void g(void)
{
  x = 2;
  return;
}