shithub: scc

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