-
Virgile Prevosto authored
[Ptests] preserve LOG after STDOPT directive See merge request frama-c/frama-c!2073
Virgile Prevosto authored[Ptests] preserve LOG after STDOPT directive See merge request frama-c/frama-c!2073
if.res.oracle 546 B
[kernel] Parsing tests/spec/if.c (with preprocessing)
[kernel] tests/spec/if.c:7: Warning:
parsing obsolete ACSL construct 'logic declaration'. 'an axiomatic block' should be used instead.
[kernel:annot-error] tests/spec/if.c:12: Warning:
invalid implicit conversion from 'int' to 'char *'. Ignoring code annotation
/* Generated by Frama-C */
int a;
int b;
/*@ requires MyPre: a < b? \true: \false; */
void main(void)
{
return;
}
/*@ predicate P(char *s) ;
*/
void g(char *s);
void f(void)
{
int x = 0;
g((char *)x);
return;
}