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