shithub: scc

ref: fcec548cff5349d73e1c64a99aee77ce2331858d
dir: /tests/cc/execute/0161-struct.c/

View raw version
struct S { int a; int b; };
struct S s = (struct S){1, 2};

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