shithub: scc

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

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

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