shithub: scc

ref: 9833ce7547fe04b441bdabf7ad86783c7be6efeb
dir: /tests/cc/execute/0177-literal.c/

View raw version
int boo(int *p)
{
	return (p[1] == 2) ? 0 : 1;
}

int main()
{
	return boo((int[]) {0, 2});
}