shithub: scc

ref: a107efa5686c6b4526e202609057600d2543550f
dir: /tests/execute/0102-bug.c/

View raw version
// This wouldn't compile

typedef struct  { } Vec;

static void
vecresize(Vec *v, int cap)
{
	return;
}

int main()
{
	return 0;
}