shithub: scc

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