shithub: scc

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