shithub: scc

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