shithub: scc

ref: 9f8594e14791b57e662abe1e76324bd2366c753c
dir: /tests/execute/0040-cast.c/

View raw version
int
main()
{
	void *p;
	int x;
	
	x = 2;
	p = &x;
	
	if(*((int*)p) != 2)
		return 1;
	return 0;
}