shithub: scc

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