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