-
Loïc Correnson authoredLoïc Correnson authored
bts0323.res.oracle 284 B
[kernel] Parsing tests/syntax/bts0323.c (with preprocessing)
[kernel] Parsing tests/syntax/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;
}