shithub: scc

ref: 323c4e3e9108fa9333525d13f1e8626218b765b2
dir: /tests/cc/execute/0129-initi.c/

View raw version
struct range {
	long quant;
} a[] = {1, 0};

long b;

int
main()
{
	struct range r = a[0];
	b = r.quant;

	return (b == 1) ? 0 : 1;
}