shithub: scc

ref: c40195789a26f30a3130d44f9ecd8758ea0eb0d4
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;
}