ref: bbef0f7405b510a0913d209bf77f647280d9184a dir: /tests/execute/0040-cast.c/
int main() { void *p; int x; x = 2; p = &x; if(*((int*)p) != 2) return 1; return 0; }