shithub: scc

ref: 7592b0fad1cfe071e67746bfa132adf34ea00c75
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;
}