cake
cake copied to clipboard
ownership : expected error
#include <ownership.h>
#include <stdlib.h>
#include <string.h>
void f(char * owner * p) {
*p = strdup("a");
}
void test2()
{
char * s = NULL;
f(&s); //expected error
}