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