shithub: scc

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