#include <stdio.h>

int * f() {
        return NULL;
}

int main() {
        int * p;
        *(&p) = f(), 0;
}
