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