shithub: scc

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