shithub: scc

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