Skip to content
Snippets Groups Projects
assigns_void.0.res.oracle 313 B
[kernel] Parsing tests/spec/assigns_void.c (with preprocessing)
[kernel:annot-error] tests/spec/assigns_void.c:5: Warning: 
  Cannot use a pointer to void here. Ignoring specification of function f
/* Generated by Frama-C */
void f(void *x);

void g(void)
{
  int y;
  int *x = & y;
  f((void *)x);
  return;
}