#include <stdio.h>

typedef struct _Slice {
	size_t length;
	void* ptr;
} Slice;

int main(void) {
	Slice s={0,NULL};
	if(s)return 1;
	return 0;
}
