shithub: scc

ref: be66d622ccc413b1c67c102e88f6ad27ae925e26
dir: /tests/cc/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;
}