shithub: scc

ref: 323c4e3e9108fa9333525d13f1e8626218b765b2
dir: /tests/cc/execute/0191-ary_addr.c/

View raw version
static const char *bla[] = { "a", "b" };

void
fn(const void *v)
{
}

int
main(void)
{
	fn(&bla);

	return 0;
}