ref: 9653030c822fa1a34b30b1e29fd1c7f4a545b7fc
dir: /cc1/tests/test049.c/
/*
name: TEST049
description: Basic test for initializer
error:
output:
G1	I	"x	(
	#I5
)
G3	P	"p	(
	G1	'P
)
G5	F	"main
{
\
	y	L6	G3	@I	#I5	=I
	h	#I1
L6
	h	#I0
}
*/
int x = 5;
int *p = &x;
int
main()
{
	if(*p != 5)
		return 1;
	return 0;
}