shithub: scc

ref: 188e6137d5263432892e87b80ce83a41ef11a8fe
dir: /tests/execute/0050-inits.c/

View raw version


int x = 10;

struct S {int a; int *p;};
struct S s = { .p = &x, .a = 1};

int
main()
{
	if(s.a != 1)
		return 1;
	if(*s.p != 10)
		return 2;
	return 0;
}