infer_clone/examples/hello.c

7 lines
65 B

#include <stdlib.h>
void test() {
int *s = NULL;
*s = 42;
}