shithub: scc

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