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